final case class ReducedConsumerRecord(topic: String, partition: Int, offset: Long, key: Option[String], value: String, timestamp: Long, timestampType: TimestampType) extends Product with Serializable
A ConsumerRecord
that only contains the necessary data for guardian
- topic
The kafka topic (same as
ConsumerRecord
topic
)- offset
The kafka offset (same as
ConsumerRecord
offset
)- key
Base64 encoded version of the original ConsumerRecord key as a byte array
- value
Base64 encoded version of the original ConsumerRecord value as a byte array
- timestamp
The timestamp value (same as
ConsumerRecord
timestamp
)- timestampType
The timestamp type (same as
ConsumerRecord
timestampType
)
- Alphabetic
- By Inheritance
- ReducedConsumerRecord
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new ReducedConsumerRecord(topic: String, partition: Int, offset: Long, key: Option[String], value: String, timestamp: Long, timestampType: TimestampType)
- topic
The kafka topic (same as
ConsumerRecord
topic
)- offset
The kafka offset (same as
ConsumerRecord
offset
)- key
Base64 encoded version of the original ConsumerRecord key as a byte array
- value
Base64 encoded version of the original ConsumerRecord value as a byte array
- timestamp
The timestamp value (same as
ConsumerRecord
timestamp
)- timestampType
The timestamp type (same as
ConsumerRecord
timestampType
)
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]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val key: Option[String]
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- val offset: Long
- val partition: Int
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val timestamp: Long
- val timestampType: TimestampType
- def toOffsetDateTime: OffsetDateTime
- val topic: String
- val value: String
- 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])