Hi,

We are working on MicroProfile Rest Client 1.1 for SmallRye.
One of the requirements is to implement AsyncInvocationInterceptor, an interceptor for asynchronous client invocation.
The interceptor has two methods (more details in [1]):
  • prepareContext, executed in the thread that calls the client
  • applyContext, executed in the thread that makes the request.
Moreover, there is a single instance of the interceptor per request (not per client).

Does RestEasy have some feature that we could use to implement executing the applyContext method? We couldn't find anything that would work for us in the JAX-RS itself.

We implemented a wrapper for ExecutorService that decorates runnables with code that calls the interceptor but we're hoping there may be a better solution.

Thanks,
Michał