summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Log/EventLogNotification.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Log/EventLogNotification.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Log/EventLogNotification.cpp49
1 files changed, 49 insertions, 0 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Log/EventLogNotification.cpp b/TAO/orbsvcs/orbsvcs/Log/EventLogNotification.cpp
new file mode 100644
index 00000000000..8320ca9f170
--- /dev/null
+++ b/TAO/orbsvcs/orbsvcs/Log/EventLogNotification.cpp
@@ -0,0 +1,49 @@
+#include "orbsvcs/Log/LogNotification.h"
+#include "orbsvcs/Log/EventLogNotification.h"
+#include "orbsvcs/Time_Utilities.h"
+#include "tao/debug.h"
+
+ACE_RCSID (Log,
+ EventLogNotification,
+ "$Id$")
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+TAO_EventLogNotification::TAO_EventLogNotification (CosEventChannelAdmin::EventChannel_ptr ec)
+: TAO_LogNotification (), event_channel_ (CosEventChannelAdmin::EventChannel::_duplicate (ec))
+{
+ obtain_proxy_consumer ();
+}
+
+TAO_EventLogNotification::~TAO_EventLogNotification (void)
+{
+ // No-Op.
+}
+
+void
+TAO_EventLogNotification::disconnect_push_supplier (void)
+{
+ this->consumer_->disconnect_push_consumer ();
+}
+
+void
+TAO_EventLogNotification::obtain_proxy_consumer()
+{
+ CosEventChannelAdmin::SupplierAdmin_var supplier_admin =
+ event_channel_->for_suppliers ();
+
+ consumer_ = supplier_admin->obtain_push_consumer ();
+
+ CosEventComm::PushSupplier_var supplier =
+ this->_this ();
+
+ consumer_->connect_push_supplier (supplier.in());
+}
+
+void
+TAO_EventLogNotification::send_notification (const CORBA::Any& any)
+{
+ consumer_->push (any);
+}
+
+TAO_END_VERSIONED_NAMESPACE_DECL