T - The return type of the asynchronously invoked method.public interface AsyncMethodCallback<T>
| Modifier and Type | Method and Description |
|---|---|
void |
onComplete(T response)
This method will be called when the remote side has completed invoking
your method call and the result is fully read.
|
void |
onError(java.lang.Exception exception)
This method will be called when there is either an unexpected client-side
exception like an IOException or else when the remote method raises an
exception, either declared in the IDL or due to an unexpected server-side
error.
|
void onComplete(T response)
oneway method
calls, this method will be called as soon as we have completed writing out
the request.response - The return value of the asynchronously invoked method;
null for void methods which includes
oneway methods.void onError(java.lang.Exception exception)
exception - The exception encountered processing the the asynchronous
method call, may be a local exception or an unmarshalled
remote exception.