Class BaseHTTPSender.SynchronousCallback

    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      protected SynchronousCallback()  
    • Method Summary

      All Methods Instance Methods Concrete 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.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • SynchronousCallback

        protected SynchronousCallback()
    • Method Detail

      • responseReceived

        public void responseReceived​(byte[] responseData)
        Description copied from interface: MsgSender.MsgCallback
        Method called after a successful transport of the request and response message.
        Specified by:
        responseReceived in interface MsgSender.MsgCallback
        Parameters:
        responseData - the response data from the call.
      • errorOccurred

        public void errorOccurred​(java.lang.Exception e)
        Description copied from interface: MsgSender.MsgCallback
        Method called if error occurred processing the request.
        Specified by:
        errorOccurred in interface MsgSender.MsgCallback
        Parameters:
        e - the exception thrown.