Richard Gomez

Results 101 issues of Richard Gomez

A faux pas on my part, but I have been using Vert.x with Kotlin Coroutines (💖) for almost a year and only just realized that it's possible to generate suspending...

Sub-classing the Launcher in Kotlin produces a fat jar that does not run with any commands: ``` Usage: java -jar build/libs/kotlin-launcher-bug-1.0-SNAPSHOT-fat.jar [COMMAND] [OPTIONS] [arg...] Commands: bare Creates a bare instance...

Given the following (contrived) data object: ```kotlin @DataObject(generateConverter = true) class StudentList() { var names: MutableList = mutableListOf() constructor(json: JsonObject) : this() { StudentListConverter.fromJson(json, this) } fun toJson(): JsonObject =...

Consider the following `DataObject`: ```kotlin @DataObject(generateConverter = true) class Account() { var isActive: Boolean? = null constructor(json: JsonObject) : this() { AccountConverter.fromJson(json, this) } } ``` When the converter is...

As per #3 and https://github.com/vert-x3/vertx-guide-for-java-devs/issues/10 this uses the [Vertx-Maven-Plugin](https://reactiverse.io/vertx-maven-plugin) to run the application normally, run the application with hot redeploys, package the the fat jar, and provide a remote debugger...

The [Vert.x Maven Plugin](https://reactiverse.io/vertx-maven-plugin/#using-the-plugin) provides hot redeploys, remote debugging, and much more. It would be much simpler to use the built-in Maven goals: `mvn vertx:run` instead of `./redeploy.(sh|bat)` `mvn vertx:start`...

Motivation: This fixes #46. Conformance: Your commits should be signed and you should have signed the Eclipse Contributor Agreement as explained in https://github.com/eclipse/vert.x/blob/master/CONTRIBUTING.md Please also make sure you adhere to...

## Describe the feature Presently, the `retryPolicy` method specifies how often the circuit breaker should try before failing; however, in certain cases (e.g. expected failures) it is not desirable to...