Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036 #ifndef _IOR_INTERCEPTOR_IDL_
00037 #define _IOR_INTERCEPTOR_IDL_
00038
00039 #include "tao/PI/Interceptor.pidl"
00040 #include "tao/IORInterceptor/IORInfo.pidl"
00041 #include "tao/ObjRefTemplate/ObjectReferenceTemplate.pidl"
00042
00043 module PortableInterceptor
00044 {
00045 typeprefix PortableInterceptor "omg.org";
00046
00047 local interface IORInterceptor : Interceptor
00048 {
00049 void establish_components (in IORInfo info);
00050 };
00051
00052 local interface IORInterceptor_3_0 : IORInterceptor
00053 {
00054 void components_established (in IORInfo info);
00055
00056 void adapter_manager_state_changed (
00057 in AdapterManagerId id,
00058 in AdapterState state
00059 );
00060 void adapter_state_changed (
00061 in ObjectReferenceTemplateSeq templates,
00062 in AdapterState state
00063 );
00064 };
00065 };
00066
00067 #endif