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 #ifndef _CLIENT_REQUEST_INTERCEPTOR_IDL_
00029 #define _CLIENT_REQUEST_INTERCEPTOR_IDL_
00030
00031 #include "tao/PI/Interceptor.pidl"
00032 #include "tao/PI/PIForwardRequest.pidl"
00033
00034 module PortableInterceptor {
00035
00036 typeprefix PortableInterceptor "omg.org";
00037
00038 local interface ClientRequestInfo;
00039
00040 local interface ClientRequestInterceptor : Interceptor
00041 {
00042 void send_request (in ClientRequestInfo ri) raises (ForwardRequest);
00043 void send_poll (in ClientRequestInfo ri);
00044 void receive_reply (in ClientRequestInfo ri);
00045 void receive_exception (in ClientRequestInfo ri) raises (ForwardRequest);
00046 void receive_other (in ClientRequestInfo ri) raises (ForwardRequest);
00047 };
00048 };
00049
00050 #endif