vertx-lang-kotlin
vertx-lang-kotlin copied to clipboard
Vert.x for Kotlin
Motivation: Hi, Vert.x Maintainers. We have been developing our projects in Kotlin with the Vert.x toolkit as the core of the backend. It's been quite smooth and this project provides...
Discuss in the group: https://groups.google.com/g/vertx/c/DsSPkvtLxos/m/YN_wXbrUAwAJ I have created a simple vertex project to experience its Kotlin Coroutine feature, https://github.com/hantsy/vertx-sandbox/tree/master/kotlin-co The Route `handler` method does not accept `suspend` handler. I have...
### Questions Hi all. When i use HttpClientResponse.toReceiveChannel(Vertx) for response processing by parts received parts are consuming in random order or lost some parts. ### Version vert.x 4.2.1, kotlin 1.5.31,...
Motivation: This PR bumps the kotlin & kotlin coroutines versions to the latest available
Motivation: Following #171 this is my suggestion to have a coroutine-aware EventBus * Having `CoroutineEventBus` that delegates to underlying `EventBus` for non-suspending cases, and implements suspending cases * Having `CoroutineMessageConsumer`...
See https://github.blog/2020-06-01-keep-all-your-packages-up-to-date-with-dependabot/
### Questions Starting a coroutine on a vert.x worker thread ends up running it inline, that is on the very same thread, instead of the event loop thread. This seems...
I am trying to take a `RowStream` from the postgres client and convert it to a `Flow`. One way that is possible is via `stream.toChannel(vertx).consumeAsFlow()` `consumeAsFlow` comes from `import kotlinx.coroutines.flow.consumeAsFlow`...
#### Describe the feature In addition to the [existing helper methods and builders](https://vertx.io/docs/vertx-lang-kotlin-coroutines/kotlin/), it would be useful to provide a coroutine builder that returns a `Future`. **Example:** ```kotlin // MyService...