summaryrefslogtreecommitdiff
path: root/modules/CIAO/ciao/CCM_ServantContainerInterceptor.idl
diff options
context:
space:
mode:
Diffstat (limited to 'modules/CIAO/ciao/CCM_ServantContainerInterceptor.idl')
-rw-r--r--modules/CIAO/ciao/CCM_ServantContainerInterceptor.idl26
1 files changed, 26 insertions, 0 deletions
diff --git a/modules/CIAO/ciao/CCM_ServantContainerInterceptor.idl b/modules/CIAO/ciao/CCM_ServantContainerInterceptor.idl
new file mode 100644
index 00000000000..884a1af2599
--- /dev/null
+++ b/modules/CIAO/ciao/CCM_ServantContainerInterceptor.idl
@@ -0,0 +1,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 */