Muse Mekuria

Results 1 comments of Muse Mekuria

@atamakosi Nope, I ended up using Sprint's @Async like so. `@Async @GET @Path("/search") @Produces(MediaType.APPLICATION_JSON) public void searchByName(@Suspended AsyncResponse asyncResponse) { service.getAccounts().subscribe(asyncResponse::resume, asyncResponse::resume); }` Have you looked [here?](https://jersey.java.net/documentation/latest/rx-client.html) Jersey has better...