public interface XmlRpcCallback
Modifier and Type | Method and Description |
---|---|
void |
onException(XmlRpcException exception)
Called by the XmlRpcClient when an exception was raised during
the call.
|
void |
onFault(int faultCode,
java.lang.String faultMessage)
Called by the XmlRpcClient when a fault response was received
from the server.
|
void |
onResult(java.lang.Object result)
Called by the XmlRpcClient when a response was received from
the server.
|
void onResult(java.lang.Object result)
result
- The object containing the result value.void onFault(int faultCode, java.lang.String faultMessage)
faultCode
- The error code.faultMessage
- The error message.void onException(XmlRpcException exception)
exception
- The local exception.