All Packages Class Hierarchy This Package Previous Next Index
Interface com.visigenic.vbroker.interceptor.UntypedObjectWrapper
- public interface UntypedObjectWrapper
- Java Class com.visigenic.vbroker.interceptor.UntypedObjectWrapper
- Source File com/visigenic/vbroker/interceptor/UntypedObjectWrapper.java
- IDL Source File interceptor.idl
- IDL Absolute Name ::interceptor::UntypedObjectWrapper
- Repository Identifier IDL:visigenic.com/interceptor/UntypedObjectWrapper:1.0
IDL definition:
interface UntypedObjectWrapper {
void pre_method(
in string operation,
in Object target,
in ::interceptor::Closure closure
);
void post_method(
in string operation,
in Object target,
in ::CORBA::Environment env,
in ::interceptor::Closure closure
);
};
-
post_method(String, Object, Environment, Closure)
-
Called after a method invocation
Operation: ::interceptor::UntypedObjectWrapper::post_method.
-
pre_method(String, Object, Closure)
-
Called before a method invocation
Operation: ::interceptor::UntypedObjectWrapper::pre_method.
pre_method
public abstract void pre_method(String operation,
Object target,
Closure closure)
- Called before a method invocation
Operation: ::interceptor::UntypedObjectWrapper::pre_method.
void pre_method(
in string operation,
in Object target,
in ::interceptor::Closure closure
);
- Parameters:
- operation - The operation which is being invoked.
- target - The target object of the invocation.
- closure - A closure object which can be used to store
client data.
post_method
public abstract void post_method(String operation,
Object target,
Environment env,
Closure closure)
- Called after a method invocation
Operation: ::interceptor::UntypedObjectWrapper::post_method.
void post_method(
in string operation,
in Object target,
in ::CORBA::Environment env,
in ::interceptor::Closure closure
);
- Parameters:
- operation - The operation which is being invoked
- target - The target object of the invocation.
- env - A CORBA Environment object containing an exception
that occurred or null if there was no exception.
- closure - The closure object previously passed to pre_method.
All Packages Class Hierarchy This Package Previous Next Index