[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-09-04 UTC."],[[["\u003cp\u003e\u003ccode\u003eBatchingSettings\u003c/code\u003e is a class used to define the conditions that trigger further processing of a batch of data.\u003c/p\u003e\n"],["\u003cp\u003eThe class allows configuration of thresholds based on element count, byte count, and time delay.\u003c/p\u003e\n"],["\u003cp\u003eThe latest version of \u003ccode\u003eBatchingSettings\u003c/code\u003e is 4.10.0, with older versions also available for reference.\u003c/p\u003e\n"],["\u003cp\u003eIt contains properties like \u003ccode\u003eByteCountThreshold\u003c/code\u003e, \u003ccode\u003eDelayThreshold\u003c/code\u003e, and \u003ccode\u003eElementCountThreshold\u003c/code\u003e, each determining when a batch is processed.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eBatchingSettings\u003c/code\u003e inherits members from the \u003ccode\u003eobject\u003c/code\u003e class, including methods like \u003ccode\u003eEquals\u003c/code\u003e, \u003ccode\u003eGetHashCode\u003c/code\u003e, and \u003ccode\u003eToString\u003c/code\u003e.\u003c/p\u003e\n"]]],[],null,["# Class BatchingSettings (4.10.0)\n\nVersion latestkeyboard_arrow_down\n\n- [4.10.0 (latest)](/dotnet/docs/reference/Google.Api.Gax/latest/Google.Api.Gax.BatchingSettings)\n- [4.8.0](/dotnet/docs/reference/Google.Api.Gax/4.8.0/Google.Api.Gax.BatchingSettings)\n- [4.4.0](/dotnet/docs/reference/Google.Api.Gax/4.4.0/Google.Api.Gax.BatchingSettings)\n- [4.3.1](/dotnet/docs/reference/Google.Api.Gax/4.3.1/Google.Api.Gax.BatchingSettings)\n- [4.2.0](/dotnet/docs/reference/Google.Api.Gax/4.2.0/Google.Api.Gax.BatchingSettings)\n- [4.0.0](/dotnet/docs/reference/Google.Api.Gax/4.0.0/Google.Api.Gax.BatchingSettings)\n- [3.2.0](/dotnet/docs/reference/Google.Api.Gax/3.2.0/Google.Api.Gax.BatchingSettings) \n\n public sealed class BatchingSettings\n\nBatching settings used to specify the conditions under which a batch of data\nwill be further processed. \n\nInheritance\n-----------\n\n[object](https://learn.microsoft.com/dotnet/api/system.object) \\\u003e BatchingSettings \n\nInherited Members\n-----------------\n\n[object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)) \n[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)) \n[object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode) \n[object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype) \n[object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals) \n[object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring)\n\nNamespace\n---------\n\n[Google.Api.Gax](/dotnet/docs/reference/Google.Api.Gax/latest/Google.Api.Gax)\n\nAssembly\n--------\n\nGoogle.Api.Gax.dll\n\nConstructors\n------------\n\n### BatchingSettings(long?, long?, TimeSpan?)\n\n public BatchingSettings(long? elementCountThreshold, long? byteCountThreshold, TimeSpan? delayThreshold)\n\nCreates a new instance with the specified settings.\n\nProperties\n----------\n\n### ByteCountThreshold\n\n public long? ByteCountThreshold { get; }\n\nThe byte count above which further processing of a batch will occur.\n\n### DelayThreshold\n\n public TimeSpan? DelayThreshold { get; }\n\nThe batch lifetime above which further processing of a batch will occur.\n\n### ElementCountThreshold\n\n public long? ElementCountThreshold { get; }\n\nThe element count above which further processing of a batch will occur."]]