Interface InvocationInterceptor


  • public interface InvocationInterceptor
    Represents an interceptor that is invoked around a RMI-IIOP method invocation when dynamic RMI-IIOP is used. This facility is not available either in IDL-based calls, or in static RMI-IIOP.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void postInvoke()
      Called just before a dynamic RMI-IIOP stub returns control to the caller.
      void preInvoke()
      Called just before a dynamic RMI-IIOP stub is called.
    • Method Detail

      • preInvoke

        void preInvoke()
        Called just before a dynamic RMI-IIOP stub is called. Any exceptions thrown by this method are ignored.
      • postInvoke

        void postInvoke()
        Called just before a dynamic RMI-IIOP stub returns control to the caller. Any exceptions thrown by this method are ignored.