#include <CEC_Reactive_Pulling_Strategy.h>
Inheritance diagram for TAO_CEC_Pulling_Strategy_Adapter:
Public Member Functions | |
TAO_CEC_Pulling_Strategy_Adapter (TAO_CEC_Reactive_Pulling_Strategy *adaptee) | |
Constructor. | |
virtual int | handle_timeout (const ACE_Time_Value &tv, const void *arg=0) |
Private Attributes | |
TAO_CEC_Reactive_Pulling_Strategy * | adaptee_ |
The adapted object. |
The Reactive Pulling Strategy strategy uses the reactor to periodically wakeup and try top pull events from each PullSupplier connected to the EventChannel.
Definition at line 50 of file CEC_Reactive_Pulling_Strategy.h.
|
Constructor.
Definition at line 160 of file CEC_Reactive_Pulling_Strategy.cpp.
00162 : adaptee_ (adaptee) 00163 { 00164 } |
|
Reimplemented from ACE_Event_Handler. Definition at line 167 of file CEC_Reactive_Pulling_Strategy.cpp. References TAO_CEC_Reactive_Pulling_Strategy::handle_timeout().
00170 { 00171 this->adaptee_->handle_timeout (tv, arg); 00172 return 0; 00173 } |
|
The adapted object.
Definition at line 62 of file CEC_Reactive_Pulling_Strategy.h. |