Package eu.tneitzel.rmg.plugin
Interface IResponseHandler
-
- All Known Implementing Classes:
GenericPrint,ReturnValueProvider
public interface IResponseHandlerThe IResponseHandler interface is used during rmg's 'call' action to handle the return value of an invoked method. Implementors are expected to implement the handleResponse method that is called with the return object obtained by the server. This interface is not implemented by default and server responses are ignored when no plugin was specified manually.- Author:
- Tobias Neitzel (@qtc_de)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidhandleResponse(Object responseObject)Handle the response of an RMI call.
-
-
-
Method Detail
-
handleResponse
void handleResponse(Object responseObject)
Handle the response of an RMI call.- Parameters:
responseObject- the object that was returned by the server.
-
-