#include <EC_Reactive_ConsumerControl.h>
Inheritance diagram for TAO_EC_ConsumerControl_Adapter:


Public Member Functions | |
| TAO_EC_ConsumerControl_Adapter (TAO_EC_Reactive_ConsumerControl *adaptee) | |
| Constructor. | |
| virtual int | handle_timeout (const ACE_Time_Value &tv, const void *arg=0) |
Private Attributes | |
| TAO_EC_Reactive_ConsumerControl * | adaptee_ |
| The adapted object. | |
The Reactive ConsumerControl strategy uses the reactor to periodically wakeup and verify the state of the consumers registered with the Event Channel.
Definition at line 48 of file EC_Reactive_ConsumerControl.h.
| TAO_EC_ConsumerControl_Adapter::TAO_EC_ConsumerControl_Adapter | ( | TAO_EC_Reactive_ConsumerControl * | adaptee | ) |
Constructor.
Definition at line 196 of file EC_Reactive_ConsumerControl.cpp.
00198 : adaptee_ (adaptee) 00199 { 00200 }
| int TAO_EC_ConsumerControl_Adapter::handle_timeout | ( | const ACE_Time_Value & | tv, | |
| const void * | arg = 0 | |||
| ) | [virtual] |
Reimplemented from ACE_Event_Handler.
Definition at line 203 of file EC_Reactive_ConsumerControl.cpp.
References adaptee_, and TAO_EC_Reactive_ConsumerControl::handle_timeout().
00206 { 00207 this->adaptee_->handle_timeout (tv, arg); 00208 return 0; 00209 }
The adapted object.
Definition at line 60 of file EC_Reactive_ConsumerControl.h.
Referenced by handle_timeout().
1.4.7