final case class PassThroughMessage[K, V, +PassThrough](passThrough: PassThrough) extends Envelope[K, V, PassThrough] with Product with Serializable
Envelope implementation that does not produce anything to Kafka, flows emit a PassThroughResult for every element processed.
The passThrough
field may hold any element that is passed through the Producer.flow
and included in the Results. That is useful when some context is needed to be passed
on downstream operations. That could be done with unzip/zip, but this is more convenient.
It can for example be a ConsumerMessage.CommittableOffset or ConsumerMessage.CommittableOffsetBatch
that can be committed later in the flow.
- Source
- ProducerMessage.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- PassThroughMessage
- Serializable
- Product
- Equals
- Envelope
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new PassThroughMessage(passThrough: PassThrough)
Value Members
- val passThrough: PassThrough
- Definition Classes
- PassThroughMessage → Envelope
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def withPassThrough[PassThrough2](value: PassThrough2): Envelope[K, V, PassThrough2]
- Definition Classes
- PassThroughMessage → Envelope