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

okapies.finagle.kafka.protocol.TopicPartition.scala Maven / Gradle / Ivy

The newest version!
package okapies.finagle.kafka.protocol

/**
 * A partition within a topic.
 */
case class TopicPartition(topic: String /* string */, partition: Int /* int32 */) {

  override def toString = "[%s,%d]".format(topic, partition)

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy