package kafka

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. final class KafkaProducer[K, V] extends KafkaProducerLike[K, V]

    Wraps the Java KafkaProducer providing send operations that indicate the result of the operation with either a Scala Future or a Function callback.

    Wraps the Java KafkaProducer providing send operations that indicate the result of the operation with either a Scala Future or a Function callback.

    K

    type of the key that the producer accepts

    V

    type of the value that the producer accepts

  2. trait KafkaProducerLike[K, V] extends AnyRef

Value Members

  1. object KafkaConsumer

    Utilities for creating a Kafka consumer.

    Utilities for creating a Kafka consumer.

    This singleton object provides tools for creating Kafka consumers using helpful functions. Unlike with KafkaProducer, the consumer object is not wrapped in an object that provides a Scala-like API.

  2. object KafkaDeserializer
  3. object KafkaProducer

    Utilities for creating a Kafka producer.

    Utilities for creating a Kafka producer.

    This companion object provides tools for creating Kafka producers.

  4. object KafkaProducerRecord

    Helper functions for creating Kafka's ProducerRecords.

    Helper functions for creating Kafka's ProducerRecords.

    The producer records hold the data that is to be written to Kafka. The producer records are compatible with Kafka's own KafkaProducer and the KafkaProducer in this library.

  5. object KafkaSerializer
  6. object KafkaTopicPartition

Ungrouped