All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.visigenic.vbroker.interceptor.UntypedObjectWrapper

public interface UntypedObjectWrapper

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
);
};


Method Index

 o post_method(String, Object, Environment, Closure)
Called after a method invocation

Operation: ::interceptor::UntypedObjectWrapper::post_method.

 o pre_method(String, Object, Closure)
Called before a method invocation

Operation: ::interceptor::UntypedObjectWrapper::pre_method.

Methods

 o 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.
 o 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