summaryrefslogtreecommitdiff
path: root/modules/CIAO/ciao/CCM_ServantContainerInterceptor.idl
blob: 884a1af25999c90225a2080a108e91db00936ed5 (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_SERVANTCONTAINERINTERCEPTOR_IDL)
#define CCM_SERVANTCONTAINERINTERCEPTOR_IDL

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

module Components
{
  module ContainerPortableInterceptor
  {
    local interface ServantContainerInterceptor : ContainerInterceptor
    {
      void servant_receive_request (in ContainerServantRequestInfo info, out boolean proceed_call)
        raises (PortableInterceptor::ForwardRequest);
      void servant_send_reply (in ContainerServantRequestInfo info, out boolean proceed_call);
      void servant_send_exception (in ContainerServantRequestInfo info, out boolean proceed_call)
        raises (PortableInterceptor::ForwardRequest);
      void servant_send_other (in ContainerServantRequestInfo info)
        raises (PortableInterceptor::ForwardRequest);
    };
  };
};
#endif /* CCM_SERVANTCONTAINERINTERCEPTOR_IDL */