Paulo Lopes

Results 282 comments of Paulo Lopes

Hi, I'm no expert in the IDE but I can workaround it by selecting the "maven" tab and click the "m" button which allows me to run th e action...

@Vorimo yes, I made a mistake, the interceptor can remain the same signature, now the internal storage should be enhanced, instead of a plain `list` it needs to be a...

@Vorimo it should be available at runtime, for example, if we look at the code we're discussing: ```java handler = msg -> { // handler is a java lambda, "msg"...

@leotu a while ago I've prototyped JSON-RPC handler for vert.x https://github.com/pmlopes/vertx-ethereum/tree/master/src/main/java/xyz/jetdrone/vertx/jsonrpc as a PoC for Ethereum. Perhaps if you're interested I can publish just the JSON RPC to maven and...

Changing format would be a breaking change and would require a good reason a discussion with the community on the google group channel.

Service Proxies leverage on the codegen project so they should work with all supported languages if i'm not mistaken.

As a reference see: https://github.com/pmlopes/kambi-2016/blob/master/data-storage-client/src/main/resources/Client.groovy https://github.com/pmlopes/kambi-2016/blob/master/frontend/src/main/resources/server.js#L13 They are both Groovy and JS proxies of: https://github.com/pmlopes/kambi-2016/blob/master/data-storage-service/src/main/java/io/vertx/workshop/data/DataStorageService.java

@chefhoobajoob @cescoffier you're right I didn't read the issue properly.

I was thinkering on this and managed to get it working in a "hackish" way: https://github.com/pmlopes/vertx3-nashorn.next/blob/master/services/src/main/resources/service.js The interface defines the API and then the JS verticle implements it.