#include <Transport_Timer.h>
Inheritance diagram for TAO_Transport_Timer:
Public Member Functions | |
TAO_Transport_Timer (TAO_Transport *transport) | |
Constructor. | |
virtual int | handle_timeout (const ACE_Time_Value ¤t_time, const void *act) |
Private Attributes | |
TAO_Transport * | transport_ |
The Adaptee. |
Definition at line 39 of file Transport_Timer.h.
TAO_BEGIN_VERSIONED_NAMESPACE_DECL TAO_Transport_Timer::TAO_Transport_Timer | ( | TAO_Transport * | transport | ) |
Constructor.
transport | The adaptee |
Definition at line 12 of file Transport_Timer.cpp.
00013 : transport_ (transport) 00014 { 00015 }
int TAO_Transport_Timer::handle_timeout | ( | const ACE_Time_Value & | current_time, | |
const void * | act | |||
) | [virtual] |
Receive timeout events from the Reactor and forward them to the TAO_Transport
Reimplemented from ACE_Event_Handler.
Definition at line 18 of file Transport_Timer.cpp.
References TAO_Transport::handle_timeout(), and transport_.
00020 { 00021 return this->transport_->handle_timeout (current_time, act); 00022 }
TAO_Transport* TAO_Transport_Timer::transport_ [private] |