Uses of Interface
io.smallrye.reactive.messaging.kafka.commit.KafkaCommitHandler
-
Packages that use KafkaCommitHandler Package Description io.smallrye.reactive.messaging.kafka io.smallrye.reactive.messaging.kafka.commit io.smallrye.reactive.messaging.kafka.impl -
-
Uses of KafkaCommitHandler in io.smallrye.reactive.messaging.kafka
Constructors in io.smallrye.reactive.messaging.kafka with parameters of type KafkaCommitHandler Constructor Description IncomingKafkaRecord(org.apache.kafka.clients.consumer.ConsumerRecord<K,T> record, String channel, int index, KafkaCommitHandler commitHandler, KafkaFailureHandler onNack, boolean cloudEventEnabled, boolean tracingEnabled)IncomingKafkaRecordBatch(org.apache.kafka.clients.consumer.ConsumerRecords<K,T> records, String channel, int index, KafkaCommitHandler commitHandler, KafkaFailureHandler onNack, boolean cloudEventEnabled, boolean tracingEnabled) -
Uses of KafkaCommitHandler in io.smallrye.reactive.messaging.kafka.commit
Classes in io.smallrye.reactive.messaging.kafka.commit that implement KafkaCommitHandler Modifier and Type Class Description classKafkaCheckpointCommitAbstract commit handler for checkpointing processing state on a state store Instead of committing topic-partition offsets back to Kafka, checkpointing commit handlers persist and restore offsets on an external store.classKafkaFileCheckpointCommitCheckpointing commit handler which uses local files as state store.classKafkaIgnoreCommitIgnores an ACK and does not commit any offsets.classKafkaLatestCommitWill commit the record offset received by the Kafka consumer (if higher than the previously committed offset).classKafkaThrottledLatestProcessedCommitWill keep track of received messages and commit to the next offset after the latest ACKed message in sequence.Methods in io.smallrye.reactive.messaging.kafka.commit that return KafkaCommitHandler Modifier and Type Method Description KafkaCommitHandlerKafkaCommitHandler.Factory. create(KafkaConnectorIncomingConfiguration config, io.vertx.mutiny.core.Vertx vertx, KafkaConsumer<?,?> consumer, BiConsumer<Throwable,Boolean> reportFailure)KafkaCommitHandlerKafkaFileCheckpointCommit.Factory. create(KafkaConnectorIncomingConfiguration config, io.vertx.mutiny.core.Vertx vertx, KafkaConsumer<?,?> consumer, BiConsumer<Throwable,Boolean> reportFailure) -
Uses of KafkaCommitHandler in io.smallrye.reactive.messaging.kafka.impl
Methods in io.smallrye.reactive.messaging.kafka.impl that return KafkaCommitHandler Modifier and Type Method Description KafkaCommitHandlerKafkaSource. getCommitHandler()
-