final case class Batch[+T](ledgerEnd: LedgerEnd, lastTraceContext: TraceContext, batch: T, batchSize: Int, offsetsUpdates: Vector[(Offset, Update)]) extends Product with Serializable
Batch wraps around a T-typed batch, enriching it with processing relevant information.
- ledgerEnd
The LedgerEnd for the batch. Needed for tail ingestion.
- lastTraceContext
The latest trace context contained in the batch. Needed for logging.
- batch
The batch of variable type.
- batchSize
Size of the batch measured in number of updates. Needed for metrics population.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Batch
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new Batch(ledgerEnd: LedgerEnd, lastTraceContext: TraceContext, batch: T, batchSize: Int, offsetsUpdates: Vector[(Offset, Update)])
- ledgerEnd
The LedgerEnd for the batch. Needed for tail ingestion.
- lastTraceContext
The latest trace context contained in the batch. Needed for logging.
- batch
The batch of variable type.
- batchSize
Size of the batch measured in number of updates. Needed for metrics population.
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
- val batch: T
- val batchSize: Int
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val lastTraceContext: TraceContext
- val ledgerEnd: LedgerEnd
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- val offsetsUpdates: Vector[(Offset, Update)]
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- 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()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])