Interface Interceptor<T extends Message>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void handleFault​(T message)
      Called for all interceptors (in reverse order) on which handleMessage had been successfully invoked, when normal execution of the chain was aborted for some reason.
      void handleMessage​(T message)
      Intercepts a message.
    • Method Detail

      • handleMessage

        void handleMessage​(T message)
                    throws Fault
        Intercepts a message. Interceptors should NOT invoke handleMessage or handleFault on the next interceptor - the interceptor chain will take care of this.
        Parameters:
        message -
        Throws:
        Fault
      • handleFault

        void handleFault​(T message)
        Called for all interceptors (in reverse order) on which handleMessage had been successfully invoked, when normal execution of the chain was aborted for some reason.
        Parameters:
        message -