| org.apache.axis2.client.async.AxisCallback
AxisCallback | public interface AxisCallback (Code) | | |
Method Summary | |
void | onComplete() This is called at the end of the MEP no matter what happens, quite like a finally block. | void | onError(Exception e) This gets called ONLY when an internal processing exception occurs. | void | onFault(MessageContext msgContext) This gets called when a fault message is received. | void | onMessage(MessageContext msgContext) This is called when we receive a message. |
onComplete | void onComplete()(Code) | | This is called at the end of the MEP no matter what happens, quite like a finally block.
|
onError | void onError(Exception e)(Code) | | This gets called ONLY when an internal processing exception occurs.
Parameters: e - the Exception which caused the problem |
onFault | void onFault(MessageContext msgContext)(Code) | | This gets called when a fault message is received.
Parameters: msgContext - the MessageContext containing the fault. |
onMessage | void onMessage(MessageContext msgContext)(Code) | | This is called when we receive a message.
Parameters: msgContext - the (response) MessageContext |
|
|