vertx-sync icon indicating copy to clipboard operation
vertx-sync copied to clipboard

Results 14 vertx-sync issues
Sort by recently updated
recently updated
newest added

Signed-off-by: Paulo Lopes Motivation: Update guava

``` java public class TestVerticle extends SyncVerticle { @Override public void start() throws Exception { super.start(); vertx.eventBus().localConsumer("Test", fiberHandler(req -> { try { this.test(req); } catch (Exception e) { e.printStackTrace(); }...

bug

### Questions Do not use this issue tracker to ask questions, instead use one of these [channels](https://vertx.io/community/). Questions will likely be closed without notice. ### Version Which version(s) did you...

bug

## ErrorCode An infinite loop is triggered when I have more than one sync code in vert.x,error code in 49-54line. ![image](https://user-images.githubusercontent.com/19318296/59536375-2263b600-8f26-11e9-8066-ef45c2ec5ba5.png) ## ErrorMsg ![image](https://user-images.githubusercontent.com/19318296/59536450-550dae80-8f26-11e9-8f3c-d8fdc6c6bc83.png) ## RightCode only one sync code...

I've been trying (unsuccessfully) to use this with JDK 11 and Vert.x 3.7.0 Instrumenting with Quasar 0.7.10 produces numerous errors. Instrumenting with 0.8.0 complains that it cannot find the class...

hello ! I had some problem while using this fantastic SYNC library in my program. The interface is very simple , but in my program I had some very deep...

Compare ```java awaitFuture(someFuture) ``` to ```java awaitResult(h -> someFuture.setHandler(h)) ``` --- If we're amenable to the helper method I don't mind submitting a PR to add it.

Hello @vietj, @jponge, this new pull request reproduces two issues with vertx 3.6.0-SNAPSHOT : 1) with vertx-codegen and vertx-service-proxy 3.6.0-SNAPSHOT, no class is generated I use a workaround: I force...

Hello, I was playing with vertx fiberHandler example and I noticed that if two messages are sent on the eventBus (different address, same eventBus) in the same request, then the...

Hi, I get an unexpected exception, if i use fiber handler in event bus and awaitResult(). ```java getEventBus().consumer(eventName, Sync.fiberHandler((Message event) -> { //... //execute sql query to list rows of...