Class CheckpointConfig
java.lang.Object
com.azure.spring.messaging.eventhubs.core.checkpoint.CheckpointConfig
Checkpoint config to describe different checkpoint strategies.
-
Constructor Summary
ConstructorsConstructorDescriptionConstruct aCheckpointConfig
with theCheckpointMode.RECORD
mode.Construct aCheckpointConfig
with the specifiedCheckpointMode
mode.CheckpointConfig
(CheckpointMode mode, Integer count) Construct aCheckpointConfig
with the specifiedCheckpointMode
mode and the amount of messages for each partition to do one checkpoint.CheckpointConfig
(CheckpointMode mode, Integer count, Duration interval) Construct aCheckpointConfig
with the specifiedCheckpointMode
mode, the amount of messages for each partition to do one checkpoint and the time interval to do one checkpoint.CheckpointConfig
(CheckpointMode mode, Duration duration) Construct aCheckpointConfig
with the specifiedCheckpointMode
mode and the time interval to do one checkpoint. -
Method Summary
Modifier and TypeMethodDescriptiongetCount()
Get the amount of message for each partition to do one checkpoint.Get the time interval to do one checkpoint.getMode()
Get the checkpoint mode.void
Set the amount of message for each partition to do one checkpoint.void
setInterval
(Duration interval) Set the time interval to do one checkpoint.void
setMode
(CheckpointMode mode) Set the checkpoint mode.
-
Constructor Details
-
CheckpointConfig
public CheckpointConfig()Construct aCheckpointConfig
with theCheckpointMode.RECORD
mode. -
CheckpointConfig
Construct aCheckpointConfig
with the specifiedCheckpointMode
mode.- Parameters:
mode
- the checkpoint mode.
-
CheckpointConfig
Construct aCheckpointConfig
with the specifiedCheckpointMode
mode and the amount of messages for each partition to do one checkpoint.- Parameters:
mode
- the specifiedCheckpointMode
mode.count
- the amount of messages for each partition to do one checkpoint, it will be effective only whenCheckpointMode.PARTITION_COUNT
is configured.
-
CheckpointConfig
Construct aCheckpointConfig
with the specifiedCheckpointMode
mode and the time interval to do one checkpoint.- Parameters:
mode
- the specifiedCheckpointMode
mode.duration
- the time interval to do one checkpoint, it will be effective only whenCheckpointMode.TIME
is configured.
-
CheckpointConfig
Construct aCheckpointConfig
with the specifiedCheckpointMode
mode, the amount of messages for each partition to do one checkpoint and the time interval to do one checkpoint.- Parameters:
mode
- the specifiedCheckpointMode
mode.count
- the amount of messages for each partition to do one checkpoint, it will be effective only whenCheckpointMode.PARTITION_COUNT
is configured.interval
- the time interval to do one checkpoint, it will be effective only whenCheckpointMode.TIME
is configured.
-
-
Method Details
-
getMode
Get the checkpoint mode.- Returns:
- the checkpoint mode.
-
setMode
Set the checkpoint mode.- Parameters:
mode
- the checkpoint mode.
-
getCount
Get the amount of message for each partition to do one checkpoint.- Returns:
- the amount of message for each partition to do one checkpoint.
-
setCount
Set the amount of message for each partition to do one checkpoint.- Parameters:
count
- the amount of message for each partition to do one checkpoint.
-
getInterval
Get the time interval to do one checkpoint.- Returns:
- the time interval to do one checkpoint.
-
setInterval
Set the time interval to do one checkpoint.- Parameters:
interval
- the time interval to do one checkpoint.
-