summaryrefslogtreecommitdiff
path: root/ACE/TAO/orbsvcs/orbsvcs/Notify/Factory.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/orbsvcs/orbsvcs/Notify/Factory.h')
-rw-r--r--ACE/TAO/orbsvcs/orbsvcs/Notify/Factory.h138
1 files changed, 138 insertions, 0 deletions
diff --git a/ACE/TAO/orbsvcs/orbsvcs/Notify/Factory.h b/ACE/TAO/orbsvcs/orbsvcs/Notify/Factory.h
new file mode 100644
index 00000000000..d4e9c4a2f6c
--- /dev/null
+++ b/ACE/TAO/orbsvcs/orbsvcs/Notify/Factory.h
@@ -0,0 +1,138 @@
+/* -*- C++ -*- */
+/**
+ * @file Factory.h
+ *
+ * $Id$
+ *
+ * @author Pradeep Gore <pradeep@oomworks.com>
+ *
+ *
+ */
+
+#ifndef TAO_Notify_FACTORY_H
+#define TAO_Notify_FACTORY_H
+
+#include /**/ "ace/pre.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+#include "tao/Versioned_Namespace.h"
+#include "ace/CORBA_macros.h"
+#include "ace/Service_Object.h"
+
+ACE_BEGIN_VERSIONED_NAMESPACE_DECL
+class ACE_Lock;
+ACE_END_VERSIONED_NAMESPACE_DECL
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+class TAO_Notify_Object;
+class TAO_Notify_EventChannelFactory;
+class TAO_Notify_EventChannel;
+class TAO_Notify_SupplierAdmin;
+class TAO_Notify_ConsumerAdmin;
+class TAO_Notify_ProxyPushConsumer;
+class TAO_Notify_CosEC_ProxyPushSupplier;
+class TAO_Notify_CosEC_ProxyPushConsumer;
+class TAO_Notify_ProxyPushSupplier;
+class TAO_Notify_StructuredProxyPushConsumer;
+class TAO_Notify_StructuredProxyPushSupplier;
+class TAO_Notify_SequenceProxyPushConsumer;
+class TAO_Notify_SequenceProxyPushSupplier;
+class TAO_Notify_ProxyConsumer;
+class TAO_Notify_ProxySupplier;
+class TAO_Notify_ConsumerAdmin;
+class TAO_Notify_SupplierAdmin;
+class TAO_Notify_Proxy;
+class TAO_Notify_Consumer;
+class TAO_Notify_Supplier;
+class TAO_Notify_Peer;
+
+namespace CORBA
+{
+ class Environment;
+}
+
+template <class PROXY> class TAO_ESF_Proxy_Collection;
+
+typedef TAO_ESF_Proxy_Collection<TAO_Notify_ProxyConsumer> TAO_Notify_ProxyConsumer_Collection;
+typedef TAO_ESF_Proxy_Collection<TAO_Notify_ProxySupplier> TAO_Notify_ProxySupplier_Collection;
+
+typedef TAO_ESF_Proxy_Collection<TAO_Notify_EventChannel> TAO_Notify_EventChannel_Collection;
+typedef TAO_ESF_Proxy_Collection<TAO_Notify_ConsumerAdmin> TAO_Notify_ConsumerAdmin_Collection;
+typedef TAO_ESF_Proxy_Collection<TAO_Notify_SupplierAdmin> TAO_Notify_SupplierAdmin_Collection;
+typedef TAO_ESF_Proxy_Collection<TAO_Notify_Proxy> TAO_Notify_Proxy_Collection;
+
+/**
+ * @class TAO_Notify_Factory
+ *
+ * @brief Factory interface for creating Notify Objects.
+ *
+ */
+class /*TAO_Notify_Serv_Export*/ TAO_Notify_Factory : public ACE_Service_Object
+{
+public:
+ /// Create ProxySupplier Collection
+ virtual void create (TAO_Notify_ProxySupplier_Collection*& collection) = 0;
+
+ /// Create ProxyConsumer Collection
+ virtual void create (TAO_Notify_ProxyConsumer_Collection*& collection) = 0;
+
+ /// Create EventChannel Collection
+ virtual void create (TAO_Notify_EventChannel_Collection*& collection) = 0;
+
+ /// Create ConsumerAdmin Collection
+ virtual void create (TAO_Notify_ConsumerAdmin_Collection*& collection) = 0;
+
+ /// Create SupplierAdmin Collection
+ virtual void create (TAO_Notify_SupplierAdmin_Collection*& collection) = 0;
+
+ /// Create Proxy Collection
+ virtual void create (TAO_Notify_Proxy_Collection*& collection) = 0;
+
+ /// Create EventChannelFactory
+ virtual void create (TAO_Notify_EventChannelFactory*& channel_factory,
+ const char* factory_name) = 0;
+
+ /// Create EventChannel
+ virtual void create (TAO_Notify_EventChannel*& channel,
+ const char* ec_name) = 0;
+
+ /// Create SupplierAdmin
+ virtual void create (TAO_Notify_SupplierAdmin*& admin) = 0;
+
+ /// Create ConsumerAdmin
+ virtual void create (TAO_Notify_ConsumerAdmin*& admin) = 0;
+
+ /// Create ProxyPushConsumer
+ virtual void create (TAO_Notify_ProxyPushConsumer*& proxy) = 0;
+
+ /// Create ProxyPushSupplier
+ virtual void create (TAO_Notify_ProxyPushSupplier*& proxy) = 0;
+
+ /// Create CosEC_ProxyPushConsumer
+ virtual void create (TAO_Notify_CosEC_ProxyPushConsumer*& proxy) = 0;
+
+ /// Create CosEC_ProxyPushSupplier
+ virtual void create (TAO_Notify_CosEC_ProxyPushSupplier*& proxy) = 0;
+
+ /// Create StructuredProxyPushConsumer
+ virtual void create (TAO_Notify_StructuredProxyPushConsumer*& proxy) = 0;
+
+ /// Create StructuredProxyPushSupplier
+ virtual void create (TAO_Notify_StructuredProxyPushSupplier*& proxy) = 0;
+
+ /// Create SequenceProxyPushConsumer
+ virtual void create (TAO_Notify_SequenceProxyPushConsumer*& proxy) = 0;
+
+ /// Create SequenceProxyPushSupplier
+ virtual void create (TAO_Notify_SequenceProxyPushSupplier*& proxy) = 0;
+};
+
+TAO_END_VERSIONED_NAMESPACE_DECL
+
+#include /**/ "ace/post.h"
+
+#endif /* TAO_Notify_FACTORY_H */