Class PollingFuture

    • Method Detail

      • onError

        public void onError​(Exception e)
        Description copied from interface: AxisCallback
        This gets called ONLY when an internal processing exception occurs.
        Specified by:
        onError in interface AxisCallback
        Parameters:
        e - the Exception which caused the problem
      • onMessage

        public void onMessage​(MessageContext msgContext)
        Description copied from interface: AxisCallback
        This is called when we receive a message.
        Specified by:
        onMessage in interface AxisCallback
        Parameters:
        msgContext - the (response) MessageContext
      • onFault

        public void onFault​(MessageContext msgContext)
        Description copied from interface: AxisCallback
        This gets called when a fault message is received.
        Specified by:
        onFault in interface AxisCallback
        Parameters:
        msgContext - the MessageContext containing the fault.
      • onComplete

        public void onComplete()
        Description copied from interface: AxisCallback
        This is called at the end of the MEP no matter what happens, quite like a finally block.
        Specified by:
        onComplete in interface AxisCallback