Andrew Rouse
Andrew Rouse
I think it blocks JAX-RS _using invokers_ to call all rest resource methods, since they support asynchronous operation. Personally, I think this issue precludes using invokers for any portable implementation...
I think we should add this method to `InvokerBuilder`: ```java InvokerBuilder withAsyncHandler(Class
I've a WIP of the API here: https://github.com/jakartaee/cdi/compare/main...Azquelt:cdi:async-invoker And of some TCK tests here: https://github.com/jakartaee/cdi-tck/compare/master...Azquelt:async-invokers
> In my opinion, we shouldn't require users to specify that they want method invocations to be asynchronous. I disagree because I don't like having some magic that goes on...
> The upside of 1 and 2 is that they are explicit. The downside is that in both cases, there need to be two parties doing the same job of...
> So here's a refined proposal that is in principle close to yours, but the API itself is close to mine :-) > ... I think this makes sense, I'll...
Ah! Thank you