|
Apache CXF API | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT |
@Documented @Retention(value=RUNTIME) @Target(value=METHOD) public @interface UseAsyncMethod
Instructs the runtime to dispatch using the async method
on service if continuations are available. This only applies
to the JAX-WS frontend at this time.
Instead of calling the "X methodName(Y, Z...) method, it will
call the "Future methodName(Y, Z, ... AsyncHandler
public Future greetMeAsync(final String requestType, final AsyncHandlerThe use of the org.apache.cxf.jaxws.ServerAsyncResponse class for the response as shown above can simplify things and is recommended.asyncHandler) { final ServerAsyncResponse r = new ServerAsyncResponse (); new Thread() { public void run() { //do some work on a backgound thread to generate the response... GreetMeResponse resp = new GreetMeResponse(); resp.setResponseType("Hello " + requestType); r.set(resp); asyncHandler.handleResponse(r); } } .start(); return r; }
Optional Element Summary | |
---|---|
boolean |
always
By default, if continuations are not available, it will use the non-async method. |
public abstract boolean always
|
Apache CXF API | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT |