Enum CheckpointMode
- All Implemented Interfaces:
Serializable
,Comparable<CheckpointMode>
,java.lang.constant.Constable
The offset commit behavior enumeration.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCheckpoint after each processed batch of records.User decide when to checkpoint manuallyCheckpoint once for number of message specified byCheckpointConfig.getCount()
()} in each partitionCheckpoint after each processed record.Checkpoint once for each time interval specified byCheckpointConfig.getInterval()
()} -
Method Summary
Modifier and TypeMethodDescriptionstatic CheckpointMode
Returns the enum constant of this type with the specified name.static CheckpointMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
RECORD
Checkpoint after each processed record. Makes sense only ifListenerMode.RECORD
is used. -
BATCH
Checkpoint after each processed batch of records. -
MANUAL
User decide when to checkpoint manually -
PARTITION_COUNT
Checkpoint once for number of message specified byCheckpointConfig.getCount()
()} in each partition -
TIME
Checkpoint once for each time interval specified byCheckpointConfig.getInterval()
()}
-
-
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
-