Interface MsgSender.MsgCallback

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void errorOccurred​(java.lang.Exception e)
      Method called if error occurred processing the request.
      void responseReceived​(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.