Uses of Class
io.smallrye.reactive.messaging.kafka.commit.ProcessingState
-
Packages that use ProcessingState Package Description io.smallrye.reactive.messaging.kafka.commit -
-
Uses of ProcessingState in io.smallrye.reactive.messaging.kafka.commit
Fields in io.smallrye.reactive.messaging.kafka.commit with type parameters of type ProcessingState Modifier and Type Field Description protected Map<org.apache.kafka.common.TopicPartition,ProcessingState<?>>
KafkaCheckpointCommit. processingStateMap
Methods in io.smallrye.reactive.messaging.kafka.commit that return ProcessingState Modifier and Type Method Description static <S> ProcessingState<S>
StateStore. getProcessingState(org.eclipse.microprofile.reactive.messaging.Message<?> message)
Methods in io.smallrye.reactive.messaging.kafka.commit that return types with arguments of type ProcessingState Modifier and Type Method Description protected abstract io.smallrye.mutiny.Uni<ProcessingState<?>>
KafkaCheckpointCommit. fetchProcessingState(org.apache.kafka.common.TopicPartition partition)
protected io.smallrye.mutiny.Uni<ProcessingState<?>>
KafkaFileCheckpointCommit. fetchProcessingState(org.apache.kafka.common.TopicPartition partition)
Optional<ProcessingState<T>>
StateStore. getCurrent()
Optional<ProcessingState<T>>
StateStore. getNext()
Methods in io.smallrye.reactive.messaging.kafka.commit with parameters of type ProcessingState Modifier and Type Method Description protected abstract io.smallrye.mutiny.Uni<Void>
KafkaCheckpointCommit. persistProcessingState(org.apache.kafka.common.TopicPartition partition, ProcessingState<?> state)
protected io.smallrye.mutiny.Uni<Void>
KafkaFileCheckpointCommit. persistProcessingState(org.apache.kafka.common.TopicPartition partition, ProcessingState<?> state)
Constructor parameters in io.smallrye.reactive.messaging.kafka.commit with type arguments of type ProcessingState Constructor Description StateStore(org.apache.kafka.common.TopicPartition topicPartition, long recordOffset, Supplier<ProcessingState<T>> stateSupplier)
-