Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/viartemev/kafka-on-the-shore

Kafka on the Shore
https://github.com/viartemev/kafka-on-the-shore

coroutines kafka kafka-consumer kafka-producer kotlin library

Last synced: about 1 month ago
JSON representation

Kafka on the Shore

Awesome Lists containing this project

README

        

# Kafka on the Shore

### Usage:
##### - Async message sending:
```kotlin
async { kafkaProducer.dispatch(ProducerRecord("topic", "This is record")) }
```

##### - Async consumer commit:
```kotlin
async { kafkaConsumer.commitAsync() }
```