BatchProcessingLevel enum

Defines the maximum amount of batches processed sequentially without a delay within one reading/uploading cycle. high means that more data will be sent in a single upload cycle but more CPU and memory will be used to process the data. low means that less data will be sent in a single upload cycle but less CPU and memory will be used to process the data.

Inheritance

Constructors

BatchProcessingLevel()
const

Values

low → const BatchProcessingLevel

Prefer less processing with smaller batches, but less CPU and memory usage

medium → const BatchProcessingLevel

Medium batch processing. This is the default.

high → const BatchProcessingLevel

Prefer higher processing sending larger batches, but more CPU and memory usage

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<BatchProcessingLevel>
A constant List of the values in this enum, in order of their declaration.