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_BEGIN_VERSIONED_NAMESPACE_DECL
10 ACE_Reactor_Notification_Strategy::ACE_Reactor_Notification_Strategy (
12 ACE_Event_Handler
*eh
,
13 ACE_Reactor_Mask mask
)
14 : ACE_Notification_Strategy (eh
, mask
),
19 ACE_Reactor_Notification_Strategy::~ACE_Reactor_Notification_Strategy ()
24 ACE_Reactor_Notification_Strategy::notify ()
26 return this->reactor_
->notify (this->eh_
, this->mask_
);
30 ACE_Reactor_Notification_Strategy::notify (ACE_Event_Handler
*eh
,
31 ACE_Reactor_Mask mask
)
33 return this->reactor_
->notify (eh
, mask
);
36 ACE_END_VERSIONED_NAMESPACE_DECL