Enum MiniBatchMode
- All Implemented Interfaces:
Serializable,Comparable<MiniBatchMode>
The type of mini-batch interval: rowtime or proctime.
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDefault value, meaning no mini-batch interval is required.An operator in#ProcTimemode requires watermarks emitted in proctime interval, i.e., unbounded group agg with mini-batch enabled.An operator in#RowTimemode requires watermarks extracted from elements, and emitted in rowtime interval, e.g., window, window join... -
Method Summary
Modifier and TypeMethodDescriptionstatic MiniBatchModeReturns the enum constant of this type with the specified name.static MiniBatchMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
ProcTime
An operator in#ProcTimemode requires watermarks emitted in proctime interval, i.e., unbounded group agg with mini-batch enabled. -
RowTime
An operator in#RowTimemode requires watermarks extracted from elements, and emitted in rowtime interval, e.g., window, window join... -
None
Default value, meaning no mini-batch interval is required.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-