okapies.finagle.kafka.protocol.TopicPartition.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of finagle-kafka_2.11 Show documentation
Show all versions of finagle-kafka_2.11 Show documentation
An Apache Kafka client in Netty and Finagle.
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