ConsumerSettings

ox.kafka.ConsumerSettings
See theConsumerSettings companion object
case class ConsumerSettings[K, V](bootstrapServers: List[String], groupId: String, keyDeserializer: Deserializer[K], valueDeserializer: Deserializer[V], autoCommit: Boolean, autoOffsetReset: Option[AutoOffsetReset], otherProperties: Map[String, String])

Attributes

Companion
object
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

def bootstrapServers(servers: String*): ConsumerSettings[K, V]
def groupId(gid: String): ConsumerSettings[K, V]
def keyDeserializer[KK](deserializer: Deserializer[KK]): ConsumerSettings[KK, V]
def property(key: String, value: String): ConsumerSettings[K, V]
def toConsumer: KafkaConsumer[K, V]
def toProperties: Properties
def valueDeserializer[VV](deserializer: Deserializer[VV]): ConsumerSettings[K, VV]

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product