Packages

package models

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Type Members

  1. final case class BackupObjectMetadata(compression: Option[CompressionType]) extends Product with Serializable
  2. sealed trait CompressionType extends AnyRef
  3. 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

    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)

Value Members

  1. object BackupObjectMetadata extends Serializable
  2. case object Gzip extends CompressionType with Product with Serializable