vertx-lang-kotlin icon indicating copy to clipboard operation
vertx-lang-kotlin copied to clipboard

Vert.x for Kotlin

Results 53 vertx-lang-kotlin issues
Sort by recently updated
recently updated
newest added

Vert.x provides Sock JS Service Proxy libraries (for Java, Kotlin JVM, JS etc) however there isn't one available for [Kotlin JS](https://kotlinlang.org/docs/reference/js-overview.html) ([video](https://www.youtube.com/watch?v=1Pu0TYJJ2Tw)). Kotlin covers both [server-side](https://kotlinlang.org/docs/reference/server-overview.html) (using Kotlin JVM or...

help wanted

https://github.com/vert-x3/wiki/wiki/Vert.x-code-style-guidelines

I am using following Kotlin code to generate proxy (This will also generate Rx methods) ``` @ProxyGen @VertxGen interface JobService { @Fluent fun getCertain(jobId: Int, handler: Handler): JobService } When...

The following code on [this page](https://vertx.io/docs/vertx-core/kotlin/#_json) seems to be broken (I guess it was intended to contain a `obj` function call): ``` // The json builder declares a JSON structure...

for instance, now we use the `await*` suspending function like this ``` val id = awaitEvent { vertx.setTimer(1000, it) } ``` we could generate extensions: ``` suspend fun Vertx.setTimer(delay: Long):...

Hi, I'm quite new to Vert.x so I apologize if the question was already answered somewhere else: I'm trying to use `vertx-codegen` in combination with `kapt` to generate a Proxy...

With Vert.x there is no testing guide for Kotlin. Currently if Vert.x testing is done using Kotlin then **JUnit** and **vertx-unit** are used for testing, which isn't **Kotlinic** (idiomatic Kotlin)....

help wanted

I want to generate a data object from a kotlin class (Author), but it generates an error that I could not solve `Could not generate element for org.vult.services.Author: null` I...

help wanted

Hello, I'm often finding myself stuck with this kind of stuff : ```kotlin @Before fun setup(ctx: TestContext) { vertx.executeBlocking( { fut: Future -> // blocking stuff fut.complete() }, ctx.asyncAssertSuccess()) }...