1 #include "ace/Reactor_Notification_Strategy.h"
2 #include "ace/Reactor.h"
4 #if !defined (__ACE_INLINE__)
5 #include "ace/Reactor_Notification_Strategy.inl"
6 #endif /* __ACE_INLINE __ */
8 ACE_RCSID(ace
, Reactor_Notification_Strategy
, "$Id: Reactor_Notification_Strategy.cpp 80826 2008-03-04 14:51:23Z wotte $")
10 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
12 ACE_Reactor_Notification_Strategy::ACE_Reactor_Notification_Strategy (
14 ACE_Event_Handler
*eh
,
15 ACE_Reactor_Mask mask
)
16 : ACE_Notification_Strategy (eh
, mask
),
21 ACE_Reactor_Notification_Strategy::~ACE_Reactor_Notification_Strategy (void)
26 ACE_Reactor_Notification_Strategy::notify (void)
28 return this->reactor_
->notify (this->eh_
, this->mask_
);
32 ACE_Reactor_Notification_Strategy::notify (ACE_Event_Handler
*eh
,
33 ACE_Reactor_Mask mask
)
35 return this->reactor_
->notify (eh
, mask
);
38 ACE_END_VERSIONED_NAMESPACE_DECL