summaryrefslogtreecommitdiff
path: root/ACE/ace/Reactor_Notification_Strategy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Reactor_Notification_Strategy.cpp')
-rw-r--r--ACE/ace/Reactor_Notification_Strategy.cpp38
1 files changed, 38 insertions, 0 deletions
diff --git a/ACE/ace/Reactor_Notification_Strategy.cpp b/ACE/ace/Reactor_Notification_Strategy.cpp
new file mode 100644
index 00000000000..01ff86a1a5d
--- /dev/null
+++ b/ACE/ace/Reactor_Notification_Strategy.cpp
@@ -0,0 +1,38 @@
+// $Id$
+
+#include "ace/Reactor_Notification_Strategy.h"
+#include "ace/Reactor.h"
+
+#if !defined (__ACE_INLINE__)
+#include "ace/Reactor_Notification_Strategy.inl"
+#endif /* __ACE_INLINE __ */
+
+ACE_BEGIN_VERSIONED_NAMESPACE_DECL
+
+ACE_Reactor_Notification_Strategy::ACE_Reactor_Notification_Strategy (
+ ACE_Reactor *reactor,
+ ACE_Event_Handler *eh,
+ ACE_Reactor_Mask mask)
+ : ACE_Notification_Strategy (eh, mask),
+ reactor_ (reactor)
+{
+}
+
+ACE_Reactor_Notification_Strategy::~ACE_Reactor_Notification_Strategy (void)
+{
+}
+
+int
+ACE_Reactor_Notification_Strategy::notify (void)
+{
+ return this->reactor_->notify (this->eh_, this->mask_);
+}
+
+int
+ACE_Reactor_Notification_Strategy::notify (ACE_Event_Handler *eh,
+ ACE_Reactor_Mask mask)
+{
+ return this->reactor_->notify (eh, mask);
+}
+
+ACE_END_VERSIONED_NAMESPACE_DECL