Packages

final class SendProducer[K, V] extends AnyRef

Utility class for producing to Kafka without using Akka Streams.

Source
SendProducer.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SendProducer
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def close(): Future[Done]

    Close the underlying producer (depending on the "close producer on stop" setting).

  2. def send(record: ProducerRecord[K, V]): Future[RecordMetadata]

    Send a raw Kafka org.apache.kafka.clients.producer.ProducerRecord and complete a future with the resulting metadata.

  3. def sendEnvelope[PT](envelope: Envelope[K, V, PT]): Future[Results[K, V, PT]]

    Send records to Kafka topics and complete a future with the result.

    Send records to Kafka topics and complete a future with the result.

    It publishes records to Kafka topics conditionally:

    - Message publishes a single message to its topic, and completes the future with Result

    - MultiMessage publishes all messages in its records field, and completes the future with MultiResult

    - PassThroughMessage does not publish anything, and completes the future with PassThroughResult

    The messages support passing through arbitrary data.

  4. val settings: ProducerSettings[K, V]
  5. def toString(): String
    Definition Classes
    SendProducer → AnyRef → Any