blob: 571b35e9c73384829b809713d299a03f35d07b52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
// -*- IDL -*-
/**
* @file ServerRequestInterceptor.pidl
*
* $Id$
*
* @brief Pre-compiled IDL source for the PortableInterceptor
* components in the ORB.
*
* This file was used to generate the code in ServerRequestInterceptorC.*
* The command used to generate code is:
*
* tao_idl
* -o orig -Gp -Gd -Ge 1 -GA -Sc -SS -Sci
* -Wb,export_include="tao/PI_Server/pi_server_export.h"
* -Wb,export_macro=TAO_PI_Server_Export
* -Wb,pre_include="ace/pre.h"
* -Wb,post_include="ace/post.h"
* ServerRequestInterceptor.pidl
*
* Patches for changes to the generated code are available in the
* `diffs' directory.
*/
#ifndef _SERVER_REQUEST_INTERCEPTOR_IDL_
#define _SERVER_REQUEST_INTERCEPTOR_IDL_
#include "tao/PI/Interceptor.pidl"
#include "tao/PI/PIForwardRequest.pidl"
#include "tao/OctetSeq.pidl"
module PortableInterceptor {
typeprefix PortableInterceptor "omg.org";
local interface ServerRequestInfo;
local interface ServerRequestInterceptor : Interceptor
{
/// Proprietary method in TAO for fault tolerance
void tao_ft_interception_point (in ServerRequestInfo ri, out CORBA::OctetSeq os) raises (ForwardRequest);
void receive_request_service_contexts (in ServerRequestInfo ri) raises (ForwardRequest);
void receive_request (in ServerRequestInfo ri) raises (ForwardRequest);
void send_reply (in ServerRequestInfo ri);
void send_exception (in ServerRequestInfo ri) raises (ForwardRequest);
void send_other (in ServerRequestInfo ri) raises (ForwardRequest);
};
};
#endif /* _SERVER_REQUEST_INTERCEPTOR_IDL_ */
|