batching property

BatchingConfigProto? batching
final

Batching configuration for an API method in client libraries.

Example of a YAML configuration:

publishing:
  method_settings:
  - selector: google.example.v1.ExampleService.BatchCreateExample
    batching:
      element_count_threshold: 1000
      request_byte_threshold: 100000000
      delay_threshold_millis: 10

Implementation

final BatchingConfigProto? batching;