REST-Endpoint: Async execution without return value
问题 My problem might be very easy to solve, but I don't get it at the moment. In my Quarkus-App I have a REST-Endpoint which should call a method, don't wait for the result and immediately return a 202-HTTP-Statuscode. @POST @Produces(MediaType.APPLICATION_JSON) @Consumes(MediaType.APPLICATION_JSON) public Response calculateAsync(String input) { process(); return Response.accepted().build(); } I've read the Quarkus-Documentation about Vert.x and asynchronous processing. But the point there is: