#include <POSIX_Proactor.h>
Inheritance diagram for ACE_POSIX_Asynch_Timer:


Protected Methods | |
| ACE_POSIX_Asynch_Timer (ACE_Handler &handler, const void *act, const ACE_Time_Value &tv, ACE_HANDLE event=ACE_INVALID_HANDLE, int priority=0, int signal_number=ACE_SIGRTMIN) | |
| Constructor. More... | |
| virtual | ~ACE_POSIX_Asynch_Timer (void) |
| Destructor. More... | |
| virtual void | complete (size_t bytes_transferred, int success, const void *completion_key, u_long error=0) |
| This method calls the <handler>'s handle_timeout method. More... | |
Protected Attributes | |
| ACE_Time_Value | time_ |
| Time value requested by caller. More... | |
Friends | |
| class | ACE_POSIX_Proactor |
| The factory method for this class is with the POSIX_Proactor class. More... | |
Definition at line 619 of file POSIX_Proactor.h.
|
||||||||||||||||||||||||||||
|
Constructor.
Definition at line 1952 of file POSIX_Proactor.cpp.
01958 : ACE_Asynch_Result_Impl (), 01959 ACE_POSIX_Asynch_Result (handler, act, event, 0, 0, priority, signal_number), 01960 time_ (tv) 01961 { 01962 } |
|
|
Destructor.
Definition at line 639 of file POSIX_Proactor.h.
00639 {}
|
|
||||||||||||||||||||
|
This method calls the <handler>'s handle_timeout method.
Implements ACE_Asynch_Result_Impl. Definition at line 1965 of file POSIX_Proactor.cpp. References ACE_Handler::handle_time_out, and ACE_POSIX_Asynch_Result::handler_.
01969 {
01970 this->handler_.handle_time_out (this->time_, this->act ());
01971 }
|
|
|
The factory method for this class is with the POSIX_Proactor class.
Definition at line 624 of file POSIX_Proactor.h. |
|
|
Time value requested by caller.
Definition at line 648 of file POSIX_Proactor.h. |
1.2.14 written by Dimitri van Heesch,
© 1997-2002