Class SyncCommitManager
- java.lang.Object
-
- org.apache.camel.component.kafka.consumer.AbstractCommitManager
-
- org.apache.camel.component.kafka.consumer.SyncCommitManager
-
- All Implemented Interfaces:
CommitManager
public class SyncCommitManager extends AbstractCommitManager
-
-
Field Summary
-
Fields inherited from class org.apache.camel.component.kafka.consumer.AbstractCommitManager
configuration, kafkaConsumer, printableTopic, START_OFFSET, threadId
-
-
Constructor Summary
Constructors Constructor Description SyncCommitManager(org.apache.kafka.clients.consumer.Consumer<?,?> consumer, KafkaConsumer kafkaConsumer, String threadId, String printableTopic)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcommit()Commits everything that has been cachedvoidcommit(org.apache.kafka.common.TopicPartition partition)Commits the offsets of the given partitionvoidrecordOffset(org.apache.kafka.common.TopicPartition partition, long partitionLastOffset)Record the last processed offset for future commit-
Methods inherited from class org.apache.camel.component.kafka.consumer.AbstractCommitManager
forceCommit, getManualCommit, getManualCommit, saveStateToOffsetRepository, serializeOffsetKey, serializeOffsetValue
-
-
-
-
Constructor Detail
-
SyncCommitManager
public SyncCommitManager(org.apache.kafka.clients.consumer.Consumer<?,?> consumer, KafkaConsumer kafkaConsumer, String threadId, String printableTopic)
-
-
Method Detail
-
commit
public void commit()
Description copied from interface:CommitManagerCommits everything that has been cached
-
commit
public void commit(org.apache.kafka.common.TopicPartition partition)
Description copied from interface:CommitManagerCommits the offsets of the given partition- Parameters:
partition- the partition to commit the offsets
-
recordOffset
public void recordOffset(org.apache.kafka.common.TopicPartition partition, long partitionLastOffset)Description copied from interface:CommitManagerRecord the last processed offset for future commit- Parameters:
partition- the partition to commit the offsetspartitionLastOffset- the last offset to commit
-
-