Paulo Lopes

Results 282 comments of Paulo Lopes

PR is updated to be fully backwards compatible and docs updated.

For the "next" version I'd propose a change to the original interface: ```java public interface FaasFunction extends Function> { default Future setup(Router router) { return Future.SucceededFuture(); } } ``` This...

For reference: https://vertx.io/docs/vertx-web/java/#_simple_responses Using this new API has many benefits to end users, such as, better error handling: ```java .respond(rc -> { throw new RuntimeException("Boom!"); } ``` Will now be...

@jponge I think ATM we have a concise and simple way to handle REST API implementations. I've one question for you. The current draft assumes that users will always work...

@Jotschi good points! ### ETags Regarding `etags` I think it is a good addition. We can capture the response for the verbs that return data, `GET` in this case, and...

@binarytide can you point in the code where this exception is being thrown? I'm trying to figure out which callback is on the wrong thread, but I see you are...

I'm looking at the changes, and in 0.15.0 the startup become an execute blocking: https://github.com/reactiverse/es4x/blob/0.15.0/es4x/src/main/java/io/reactiverse/es4x/impl/JSVerticleFactory.java#L79-L94 To avoid annoying logs at startup that the event loop was blocked. This could be...

In this zip file there's a jar file, that the local build of: https://github.com/reactiverse/es4x/tree/issues/disable-blockingexecute [es4x-0.16.4-SNAPSHOT.zip](https://github.com/reactiverse/es4x/files/7831003/es4x-0.16.4-SNAPSHOT.zip) Just replace the current: ``` ~/node_modules/.lib/es4x-0.16.?.jar ``` With the one in the zip, or build...

Hi @bkoripalli if you're facing the same issue, please share where is it happening. There are a couple of things here: I believe there was an issue reported upstream to...