| Class | Description |
|---|---|
| SampleConsumer |
Sample consumer application using Reactive API for Kafka.
|
| SampleProducer |
Sample producer application using Reactive API for Kafka.
|
| SampleScenarios |
Sample flows using Reactive API for Kafka.
|
| SampleScenarios.AtmostOnce |
This sample demonstrates a flow with at-most once delivery.
|
| SampleScenarios.FanOut |
This sample demonstrates a flow where messages are consumed from a Kafka topic and processed
by multiple streams with each transformed stream of messages stored in a separate Kafka topic.
|
| SampleScenarios.KafkaExactlyOnce |
This sample demonstrates an exactly/once transactional flow where messages are received
from partitions of a source topic, transformed and sent to a destination topic using a
transactional sender.
|
| SampleScenarios.KafkaSink |
This sample demonstrates the use of Kafka as a sink when messages are transferred from
an external source to a Kafka topic.
|
| SampleScenarios.KafkaSinkChain |
This sample demonstrates the use of Kafka as a sink when messages are transferred from
an external source to a Kafka topic.
|
| SampleScenarios.KafkaSource |
This sample demonstrates the use of Kafka as a source when messages are transferred from
a Kafka topic to an external sink.
|
| SampleScenarios.KafkaTransform |
This sample demonstrates a flow where messages are consumed from a Kafka topic, transformed
and the results stored in another Kafka topic.
|
| SampleScenarios.PartitionProcessor |
This sample demonstrates a flow where messages are consumed from a Kafka topic, processed
by multiple threads and the results stored in another Kafka topic.
|
| SampleScenarios.Person | |
| SampleScenarios.PersonSerDes | |
| SampleScenarios.TransactionalSend |
This sample demonstrates the use of transactions to send data to multiple topic partitions,
such that if one of the sends fails, the transaction is aborted and the data from uncommitted
transactions are not visible to consumers configured with
ConsumerConfig.ISOLATION_LEVEL_CONFIG
read_committed. |
| Enum | Description |
|---|---|
| SampleScenarios.Scenario |