summaryrefslogtreecommitdiff
path: root/CIAO/ciao/extension/CCM_ClientContainerInterceptor.idl
blob: 27a5fdc8929a0edcfd8d908c5dca67e7b222558c (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
// $Id$

#if !defined (CCM_CLIENTCONTAINERINTERCEPTOR_IDL)
#define CCM_CLIENTCONTAINERINTERCEPTOR_IDL

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

module Components
{
  module ContainerPortableInterceptor
  {
    local interface ClientContainerInterceptor : ContainerInterceptor
    {
      void send_request (in ContainerClientRequestInfo info)
        raises (PortableInterceptor::ForwardRequest);
      void send_poll (in ContainerClientRequestInfo info);
      void receive_reply (in ContainerClientRequestInfo info);
      void receive_exception (in ContainerClientRequestInfo info)
        raises (PortableInterceptor::ForwardRequest);
      void receive_other (in ContainerClientRequestInfo info)
        raises (PortableInterceptor::ForwardRequest);
    };
  };
};
#endif /* CCM_CLIENTCONTAINERINTERCEPTOR_IDL */