package
kafka
Type Members
-
case class
ConsumerProperties[T](params: Map[String, String], topic: String, groupId: String, decoder: Decoder[T], numThreads: Int = 1) extends Product with Serializable
-
case class
ProducerProperties[T](params: Map[String, String], topic: String, encoder: Encoder[T], partitionizer: (T) ⇒ Option[Array[Byte]] = (_: T) => None) extends Product with Serializable
-
-
case class
PublisherWithCommitSink[T](publisher: Publisher[KafkaMessage[T]], publisherActor: ActorRef, kafkaOffsetCommitSink: KafkaSink[KafkaMessage[T]]) extends Product with Serializable
-