org.omg.PortableInterceptor

Interface ORBInitializerOperations

public interface ORBInitializerOperations

Defines operations, applicable to the ORBInitializer. These operations are invoked on initializer from the ORB.init.

See Also: ORBInitializer

Method Summary
voidpost_init(ORBInitInfo info)
This method called during the subsequent step of initialization.
voidpre_init(ORBInitInfo info)
This method is called during the first step of initialization.

Method Detail

post_init

public void post_init(ORBInitInfo info)
This method called during the subsequent step of initialization. In this method it can be assumed that all required initial references are already registered.

Parameters: info the object describing ORB being created and containing methods to register the interceptor.

See Also: ORBInitInfoOperations

pre_init

public void pre_init(ORBInitInfo info)
This method is called during the first step of initialization. It must register all initial references that are expected to be used by other interceptors.

Parameters: info the object describing ORB being created and containing methods to register the interceptor.

See Also: ORBInitInfoOperations