summaryrefslogtreecommitdiff
path: root/trunk/TAO/tao/PI/ClientRequestInterceptor.pidl
blob: e1ecefc69e07eb5be8061560f3243ae35e843cc5 (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
// -*- IDL -*-

/**
 * @file ClientRequestInterceptor.pidl
 *
 * $Id$
 *
 * @brief Pre-compiled IDL source for the PortableInterceptor
 * components in the ORB.
 *
 * This file contains the interface definitions for "Portable"
 * Interceptor support.
 * The following is from orbos/99-12-02 Portable Interceptors spec,
 * the full IDL is downloadable from orbos/99-12-02.
 *
 * This file was used to generate the code in ClientRequestInterceptorC.*
 * The command used to generate code is:
 *
 *  tao_idl
 *     -o orig -Gp -Gd -GA -SS -Sci
 *          -Wb,export_include="tao/PI_Client/pi_client_export.h.h"
 *          -Wb,export_macro=TAO_PI_CLIENT_Export
 *          -Wb,pre_include="ace/pre.h"
 *          -Wb,post_include="ace/post.h"
 *          ClientRequestInterceptor.pidl
 */

#ifndef _CLIENT_REQUEST_INTERCEPTOR_IDL_
#define _CLIENT_REQUEST_INTERCEPTOR_IDL_

#include "tao/PI/Interceptor.pidl"
#include "tao/PI/PIForwardRequest.pidl"

module PortableInterceptor {

  typeprefix PortableInterceptor "omg.org";

  local interface ClientRequestInfo;

  local interface ClientRequestInterceptor : Interceptor
  {
    void send_request (in ClientRequestInfo ri) raises (ForwardRequest);
    void send_poll (in ClientRequestInfo ri);
    void receive_reply (in ClientRequestInfo ri);
    void receive_exception (in ClientRequestInfo ri) raises (ForwardRequest);
    void receive_other (in ClientRequestInfo ri) raises (ForwardRequest);
  };
};

#endif  /* _CLIENT_REQUEST_INTERCEPTOR_IDL_ */