Interface MsgSender.MsgCallback
-
- All Known Implementing Classes:
BaseHTTPSender.SynchronousCallback
- Enclosing interface:
- MsgSender
public static interface MsgSender.MsgCallbackMessage callback interface for receiving response data or errors.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiderrorOccurred(java.lang.Exception e)Method called if error occurred processing the request.voidresponseReceived(byte[] responseData)Method called after a successful transport of the request and response message.
-
-
-
Method Detail
-
responseReceived
void responseReceived(byte[] responseData)
Method called after a successful transport of the request and response message.- Parameters:
responseData- the response data from the call.
-
errorOccurred
void errorOccurred(java.lang.Exception e)
Method called if error occurred processing the request.- Parameters:
e- the exception thrown.
-
-