package models
Ordering
- Alphabetic
Visibility
- Public
- Protected
Type Members
- final case class BackupObjectMetadata(compression: Option[CompressionType]) extends Product with Serializable
- sealed trait CompressionType extends AnyRef
- 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 guardianA
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
)
Value Members
- object BackupObjectMetadata extends Serializable
- case object Gzip extends CompressionType with Product with Serializable