ConsumerTask<K,V> |
ConsumerBuilder.fromOffsets(Map<org.apache.kafka.common.TopicPartition,Long> offsets) |
Create ConsumerTask for consuming records starting from the given offsets.
|
ConsumerTask<K,V> |
ConsumerBuilder.fromOffsets(Map<org.apache.kafka.common.TopicPartition,Long> offsets,
long numberOfRecords) |
Create ConsumerTask for consuming records starting from the given offsets.
|
ConsumerTask<K,V> |
ConsumerBuilder.fromOffsets(Map<org.apache.kafka.common.TopicPartition,Long> offsets,
Duration during) |
Create ConsumerTask for consuming records starting from the given offsets.
|
ConsumerTask<K,V> |
ConsumerBuilder.fromOffsets(Map<org.apache.kafka.common.TopicPartition,Long> offsets,
Function<io.smallrye.mutiny.Multi<org.apache.kafka.clients.consumer.ConsumerRecord<K,V>>,io.smallrye.mutiny.Multi<org.apache.kafka.clients.consumer.ConsumerRecord<K,V>>> plugFunction) |
Create ConsumerTask for consuming records starting from the given offsets.
|
ConsumerTask<K,V> |
ConsumerBuilder.fromPrevious(KafkaTask<?,?> task) |
|
ConsumerTask<K,V> |
ConsumerBuilder.fromPrevious(KafkaTask<?,?> task,
long numberOfRecords) |
|
ConsumerTask<K,V> |
ConsumerBuilder.fromPrevious(KafkaTask<?,?> task,
long numberOfRecords,
Duration during) |
|
ConsumerTask<K,V> |
ConsumerBuilder.fromPrevious(KafkaTask<?,?> task,
Duration during) |
|
ConsumerTask<K,V> |
ConsumerBuilder.fromPrevious(KafkaTask<?,?> task,
Function<io.smallrye.mutiny.Multi<org.apache.kafka.clients.consumer.ConsumerRecord<K,V>>,io.smallrye.mutiny.Multi<org.apache.kafka.clients.consumer.ConsumerRecord<K,V>>> plugFunction) |
|
ConsumerTask<K,V> |
ConsumerBuilder.fromTopics(String... topics) |
Create ConsumerTask for consuming records from the given topics.
|
ConsumerTask<K,V> |
ConsumerBuilder.fromTopics(String topic,
long numberOfRecords) |
Create ConsumerTask for consuming records from the given topic.
|
ConsumerTask<K,V> |
ConsumerBuilder.fromTopics(String topic,
long numberOfRecords,
Duration during) |
Create ConsumerTask for consuming records from the given topic.
|
ConsumerTask<K,V> |
ConsumerBuilder.fromTopics(String topic,
Duration during) |
Create ConsumerTask for consuming records from the given topic.
|
ConsumerTask<K,V> |
ConsumerBuilder.fromTopics(String topic,
Function<io.smallrye.mutiny.Multi<org.apache.kafka.clients.consumer.ConsumerRecord<K,V>>,io.smallrye.mutiny.Multi<org.apache.kafka.clients.consumer.ConsumerRecord<K,V>>> plugFunction) |
Create ConsumerTask for consuming records from the given topic.
|
ConsumerTask<K,V> |
ConsumerBuilder.fromTopics(Set<String> topics) |
Create ConsumerTask for consuming records from the given topics.
|
ConsumerTask<K,V> |
ConsumerBuilder.fromTopics(Set<String> topics,
long numberOfRecords) |
Create ConsumerTask for consuming records from the given topics.
|
ConsumerTask<K,V> |
ConsumerBuilder.fromTopics(Set<String> topics,
Duration during) |
Create ConsumerTask for consuming records from the given topics.
|
ConsumerTask<K,V> |
ConsumerBuilder.fromTopics(Set<String> topics,
Function<io.smallrye.mutiny.Multi<org.apache.kafka.clients.consumer.ConsumerRecord<K,V>>,io.smallrye.mutiny.Multi<org.apache.kafka.clients.consumer.ConsumerRecord<K,V>>> plugFunction) |
Create ConsumerTask for consuming records from the given topics.
|