final class SendProducer[K, V] extends AnyRef
Utility class for producing to Kafka without using Akka Streams.
- Source
 - SendProducer.scala
 
- Alphabetic
 - By Inheritance
 
- SendProducer
 - AnyRef
 - Any
 
- Hide All
 - Show All
 
- Public
 - Protected
 
Instance Constructors
-    new SendProducer(settings: ProducerSettings[K, V], system: ClassicActorSystemProvider)
Utility class for producing to Kafka without using Akka Streams.
Utility class for producing to Kafka without using Akka Streams.
- settings
 producer settings used to create or access the org.apache.kafka.clients.producer.Producer The internal asynchronous operations run on the provided
Executor(which may be anActorSystem's dispatcher).
 
Value Members
-   final  def !=(arg0: Any): Boolean
- Definition Classes
 - AnyRef → Any
 
 -   final  def ##: Int
- Definition Classes
 - AnyRef → Any
 
 -   final  def ==(arg0: Any): Boolean
- Definition Classes
 - AnyRef → Any
 
 -   final  def asInstanceOf[T0]: T0
- Definition Classes
 - Any
 
 -    def clone(): AnyRef
- Attributes
 - protected[lang]
 - Definition Classes
 - AnyRef
 - Annotations
 - @throws(classOf[java.lang.CloneNotSupportedException]) @native()
 
 -    def close(): CompletionStage[Done]
Close the underlying producer (depending on the "close producer on stop" setting).
 -   final  def eq(arg0: AnyRef): Boolean
- Definition Classes
 - AnyRef
 
 -    def equals(arg0: AnyRef): Boolean
- Definition Classes
 - AnyRef → Any
 
 -   final  def getClass(): Class[_ <: AnyRef]
- Definition Classes
 - AnyRef → Any
 - Annotations
 - @native()
 
 -    def hashCode(): Int
- Definition Classes
 - AnyRef → Any
 - Annotations
 - @native()
 
 -   final  def isInstanceOf[T0]: Boolean
- Definition Classes
 - Any
 
 -   final  def ne(arg0: AnyRef): Boolean
- Definition Classes
 - AnyRef
 
 -   final  def notify(): Unit
- Definition Classes
 - AnyRef
 - Annotations
 - @native()
 
 -   final  def notifyAll(): Unit
- Definition Classes
 - AnyRef
 - Annotations
 - @native()
 
 -    def send(record: ProducerRecord[K, V]): CompletionStage[RecordMetadata]
Send a raw Kafka org.apache.kafka.clients.producer.ProducerRecord and complete a future with the resulting metadata.
 -    def sendEnvelope[PT](envelope: Envelope[K, V, PT]): CompletionStage[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
recordsfield, and completes the future with MultiResult- PassThroughMessage does not publish anything, and completes the future with PassThroughResult
The messages support passing through arbitrary data.
 -   final  def synchronized[T0](arg0: => T0): T0
- Definition Classes
 - AnyRef
 
 -    def toString(): String
- Definition Classes
 - SendProducer → AnyRef → Any
 
 -   final  def wait(): Unit
- Definition Classes
 - AnyRef
 - Annotations
 - @throws(classOf[java.lang.InterruptedException])
 
 -   final  def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
 - AnyRef
 - Annotations
 - @throws(classOf[java.lang.InterruptedException])
 
 -   final  def wait(arg0: Long): Unit
- Definition Classes
 - AnyRef
 - Annotations
 - @throws(classOf[java.lang.InterruptedException]) @native()