summaryrefslogtreecommitdiff
path: root/modules/CIAO/ciao/CCM_StubContainerInterceptor.idl
blob: c183801af86b117c4bcc1a6724633d4d82843b3c (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
// $Id$

#if !defined (CCM_STUBCONTAINERINTERCEPTOR_IDL)
#define CCM_STUBCONTAINERINTERCEPTOR_IDL

#include "ciao/CCM_ContainerInterceptor.idl"
#include "ciao/CCM_ContainerStubRequestInfo.idl"
#include "tao/PI/PIForwardRequest.pidl"

module Components
{
  module ContainerPortableInterceptor
  {
    local interface StubContainerInterceptor : ContainerInterceptor
    {
      void stub_send_request (in ContainerStubRequestInfo info, out boolean con)
        raises (PortableInterceptor::ForwardRequest);
      void stub_receive_reply (in ContainerStubRequestInfo info, out boolean con);
      void stub_receive_exception (in ContainerStubRequestInfo info, out boolean con)
        raises(PortableInterceptor::ForwardRequest);
      void stub_receive_other (in ContainerStubRequestInfo info)
        raises(PortableInterceptor::ForwardRequest);
    };
  };
};
#endif /* CCM_STUBCONTAINERINTERCEPTOR_IDL */