#include <EC_Reactive_SupplierControl.h>
Inheritance diagram for TAO_EC_SupplierControl_Adapter:
Public Member Functions | |
TAO_EC_SupplierControl_Adapter (TAO_EC_Reactive_SupplierControl *adaptee) | |
Constructor. | |
virtual int | handle_timeout (const ACE_Time_Value &tv, const void *arg=0) |
Private Attributes | |
TAO_EC_Reactive_SupplierControl * | adaptee_ |
The adapted object. |
The Reactive SupplierControl strategy uses the reactor to periodically wakeup and verify the state of the suppliers registered with the Event Channel.
The same templates should be used for the Notification and COS Event services.
Definition at line 59 of file EC_Reactive_SupplierControl.h.
|
Constructor.
Definition at line 187 of file EC_Reactive_SupplierControl.cpp.
00189 : adaptee_ (adaptee) 00190 { 00191 } |
|
Reimplemented from ACE_Event_Handler. Definition at line 194 of file EC_Reactive_SupplierControl.cpp. References TAO_EC_Reactive_SupplierControl::handle_timeout().
00197 { 00198 this->adaptee_->handle_timeout (tv, arg); 00199 return 0; 00200 } |
|
The adapted object.
Definition at line 71 of file EC_Reactive_SupplierControl.h. |