You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, Kafka-NIO only features a consumer API, a producer API is missing.
The first version of the producer API will be very similar to the Kafka's Java producer API, and won't support transactions.
classKafkaProducer<K, V>{structConfiguration{enumAcknowledgements{case none
case leaderOnly
case fullISR
case custom(Int)}
batchSize: Int
linger: TimeAmount?
memory: Int
keySerializer: Serializer<K>
valueSerializer: Serializer<V>}func send(topic:Topic, key:K, value:V)->EventLoopFuture<Void>func flush()->EventLoopFuture<Void>}
The text was updated successfully, but these errors were encountered:
Currently, Kafka-NIO only features a consumer API, a producer API is missing.
The first version of the producer API will be very similar to the Kafka's Java producer API, and won't support transactions.
The text was updated successfully, but these errors were encountered: