All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.evolutiongaming.kafka.journal.ActionRecord.scala Maven / Gradle / Ivy

The newest version!
package com.evolutiongaming.kafka.journal

import com.evolutiongaming.skafka.{Offset, Partition}

final case class ActionRecord[+A](action: A, partitionOffset: PartitionOffset) {

  def offset: Offset = partitionOffset.offset

  def partition: Partition = partitionOffset.partition
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy