processingBatchSize property

int get processingBatchSize

Returns the number of log records that are processed at a time.

Implementation

int get processingBatchSize => _processingBatchSize;
set processingBatchSize (int value)

Changes the number of log records that are processed at a time. If the new value is different from the current value, the processing timer is restarted.

Implementation

set processingBatchSize(int value) {
  if (_processingBatchSize != value) {
    _processingBatchSize = value;
  }
}