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
ConsumerRecordthat only contains the necessary data for guardianA
ConsumerRecordthat only contains the necessary data for guardian- topic
The kafka topic (same as
ConsumerRecordtopic)- offset
The kafka offset (same as
ConsumerRecordoffset)- 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
ConsumerRecordtimestamp)- timestampType
The timestamp type (same as
ConsumerRecordtimestampType)
Value Members
- object BackupObjectMetadata extends Serializable
- case object Gzip extends CompressionType with Product with Serializable