summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Event_Forwarder.idl
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:21 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:21 +0000
commit3aff90f4a822fcf5d902bbfbcc9fa931d6191a8c (patch)
tree197c810e5f5bce17b1233a7cb8d7b50c0bcd25e2 /TAO/orbsvcs/orbsvcs/Event_Forwarder.idl
parent6b846cf03c0bcbd8c276cb0af61a181e5f98eaae (diff)
downloadATCD-3aff90f4a822fcf5d902bbfbcc9fa931d6191a8c.tar.gz
Repo restructuring
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Event_Forwarder.idl')
-rw-r--r--TAO/orbsvcs/orbsvcs/Event_Forwarder.idl50
1 files changed, 50 insertions, 0 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Event_Forwarder.idl b/TAO/orbsvcs/orbsvcs/Event_Forwarder.idl
new file mode 100644
index 00000000000..bab9f7611c5
--- /dev/null
+++ b/TAO/orbsvcs/orbsvcs/Event_Forwarder.idl
@@ -0,0 +1,50 @@
+
+/**
+ * @file Event_Forwarder.idl
+ *
+ * @brief
+ *
+ * $Id$
+ *
+ * @author Pradeep Gore <pradeep@oomworks.com>
+ */
+
+#ifndef _EVENT_FORWARDER_IDL_
+#define _EVENT_FORWARDER_IDL_
+
+#include "CosNotification.idl"
+#include "CosNotifyChannelAdmin.idl"
+
+#pragma prefix ""
+
+/**
+ * @namespace Event_Forwarder
+ *
+ * @brief
+ */
+module Event_Forwarder
+{
+ interface StructuredProxyPushSupplier : CosNotifyChannelAdmin::StructuredProxyPushSupplier
+ {
+ void forward_structured (in CosNotification::StructuredEvent event);
+
+ void forward_structured_no_filtering (in CosNotification::StructuredEvent event);
+
+ void forward_any (in any event);
+
+ void forward_any_no_filtering (in any event);
+ };
+
+ interface ProxyPushSupplier : CosNotifyChannelAdmin::ProxyPushSupplier
+ {
+ void forward_structured (in CosNotification::StructuredEvent event);
+
+ void forward_structured_no_filtering (in CosNotification::StructuredEvent event);
+
+ void forward_any (in any event);
+
+ void forward_any_no_filtering (in any event);
+ };
+};
+
+#endif /* _EVENT_FORWARDER_IDL_ */