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
Modifier and TypeMethodDescriptionvoid
Called just before a dynamic RMI-IIOP stub returns control to the caller.void
Called just before a dynamic RMI-IIOP stub is called.
-
Method Details
-
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.
-