All Packages Class Hierarchy This Package Previous Next Index
#pragma prefix "visigenic.com/interceptor"
interface HandlerRegistry {
void reg_obj_client_handler(
in Object obj,
in ::interceptor::ClientEventHandler handler
)
raises(
::interceptor::HandlerExists,
::interceptor::InvalidObject
);
void reg_glob_client_handler(
in ::interceptor::ClientEventHandler handler
)
raises(
::interceptor::HandlerExists
);
void reg_obj_impl_handler(
in Object obj,
in ::interceptor::ImplEventHandler handler
)
raises(
::interceptor::HandlerExists,
::interceptor::InvalidObject
);
void reg_glob_impl_handler(
in ::interceptor::ImplEventHandler handler
)
raises(
::interceptor::HandlerExists
);
void unreg_obj_client_handler(
in Object obj
)
raises(
::interceptor::NoHandler,
::interceptor::InvalidObject
);
void unreg_glob_client_handler(
)
raises(
::interceptor::NoHandler
);
void unreg_obj_impl_handler(
in Object obj
)
raises(
::interceptor::NoHandler,
::interceptor::InvalidObject
);
void unreg_glob_impl_handler(
)
raises(
::interceptor::NoHandler
);
::interceptor::ConnectionInfo get_client_info(
in Object obj
);
};
Operation: ::interceptor::HandlerRegistry::get_client_info.
Operation: ::interceptor::HandlerRegistry::reg_glob_client_handler.
Operation: ::interceptor::HandlerRegistry::reg_glob_impl_handler.
Operation: ::interceptor::HandlerRegistry::reg_obj_client_handler.
Operation: ::interceptor::HandlerRegistry::reg_obj_impl_handler.
Operation: ::interceptor::HandlerRegistry::unreg_glob_client_handler.
Operation: ::interceptor::HandlerRegistry::unreg_glob_impl_handler.
Operation: ::interceptor::HandlerRegistry::unreg_obj_client_handler.
Operation: ::interceptor::HandlerRegistry::unreg_obj_impl_handler.
public abstract void reg_obj_client_handler(Object obj,
ClientEventHandler handler) throws HandlerExists, InvalidObject
Operation: ::interceptor::HandlerRegistry::reg_obj_client_handler.
#pragma prefix "visigenic.com/interceptor/HandlerRegistry" void reg_obj_client_handler( in Object obj, in ::interceptor::ClientEventHandler handler ) raises( ::interceptor::HandlerExists, ::interceptor::InvalidObject );
public abstract void reg_glob_client_handler(ClientEventHandler handler) throws HandlerExists
Operation: ::interceptor::HandlerRegistry::reg_glob_client_handler.
#pragma prefix "visigenic.com/interceptor/HandlerRegistry" void reg_glob_client_handler( in ::interceptor::ClientEventHandler handler ) raises( ::interceptor::HandlerExists );
public abstract void reg_obj_impl_handler(Object obj,
ImplEventHandler handler) throws HandlerExists, InvalidObject
Operation: ::interceptor::HandlerRegistry::reg_obj_impl_handler.
#pragma prefix "visigenic.com/interceptor/HandlerRegistry" void reg_obj_impl_handler( in Object obj, in ::interceptor::ImplEventHandler handler ) raises( ::interceptor::HandlerExists, ::interceptor::InvalidObject );
public abstract void reg_glob_impl_handler(ImplEventHandler handler) throws HandlerExists
Operation: ::interceptor::HandlerRegistry::reg_glob_impl_handler.
#pragma prefix "visigenic.com/interceptor/HandlerRegistry" void reg_glob_impl_handler( in ::interceptor::ImplEventHandler handler ) raises( ::interceptor::HandlerExists );
public abstract void unreg_obj_client_handler(Object obj) throws NoHandler, InvalidObject
Operation: ::interceptor::HandlerRegistry::unreg_obj_client_handler.
#pragma prefix "visigenic.com/interceptor/HandlerRegistry" void unreg_obj_client_handler( in Object obj ) raises( ::interceptor::NoHandler, ::interceptor::InvalidObject );
public abstract void unreg_glob_client_handler() throws NoHandler
Operation: ::interceptor::HandlerRegistry::unreg_glob_client_handler.
#pragma prefix "visigenic.com/interceptor/HandlerRegistry" void unreg_glob_client_handler( ) raises( ::interceptor::NoHandler );
public abstract void unreg_obj_impl_handler(Object obj) throws NoHandler, InvalidObject
Operation: ::interceptor::HandlerRegistry::unreg_obj_impl_handler.
#pragma prefix "visigenic.com/interceptor/HandlerRegistry" void unreg_obj_impl_handler( in Object obj ) raises( ::interceptor::NoHandler, ::interceptor::InvalidObject );
public abstract void unreg_glob_impl_handler() throws NoHandler
Operation: ::interceptor::HandlerRegistry::unreg_glob_impl_handler.
#pragma prefix "visigenic.com/interceptor/HandlerRegistry" void unreg_glob_impl_handler( ) raises( ::interceptor::NoHandler );
public abstract ConnectionInfo get_client_info(Object obj)
Operation: ::interceptor::HandlerRegistry::get_client_info.
#pragma prefix "visigenic.com/interceptor/HandlerRegistry" ::interceptor::ConnectionInfo get_client_info( in Object obj );
All Packages Class Hierarchy This Package Previous Next Index