Package com.uc4.communication
Interface IResponseHandler
-
public interface IResponseHandlerUsed to handle the response of asynchronous requests.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidhandleIOException(java.io.IOException e)This method is called if there was an I/O-error.voidhandleResponse(com.uc4.util.XMLDocument xml, ConnectionAttributes session)An implemenation of this class should call thehandleResponsemethod of the corresponding request.
-
-
-
Method Detail
-
handleResponse
void handleResponse(com.uc4.util.XMLDocument xml, ConnectionAttributes session)An implemenation of this class should call thehandleResponsemethod of the corresponding request.- Parameters:
xml- XML Document sent from the UC4 Server. Never nullsession- Session
-
handleIOException
void handleIOException(java.io.IOException e)
This method is called if there was an I/O-error.- Parameters:
e- Exception describing the error
-
-