Interface IResponseHandler

  • All Known Implementing Classes:
    GenericPrint, ReturnValueProvider

    public interface IResponseHandler
    The 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 Detail

      • handleResponse

        void handleResponse​(Object responseObject)
        Handle the response of an RMI call.
        Parameters:
        responseObject - the object that was returned by the server.