#include <WIN32_Proactor.h>
Inheritance diagram for ACE_WIN32_Asynch_Timer:
Protected Member Functions | |
ACE_WIN32_Asynch_Timer (const ACE_Handler::Proxy_Ptr &handler_proxy, const void *act, const ACE_Time_Value &tv, ACE_HANDLE event=ACE_INVALID_HANDLE, int priority=0, int signal_number=0) | |
Constructor. | |
virtual void | complete (size_t bytes_transferred, int success, const void *completion_key, u_long error=0) |
This method calls the 's handle_timeout method. | |
Protected Attributes | |
ACE_Time_Value | time_ |
Time value requested by caller. | |
Friends | |
class | ACE_WIN32_Proactor |
Definition at line 296 of file WIN32_Proactor.h.
|
Constructor.
Definition at line 751 of file WIN32_Proactor.cpp. References ACE_Handler::Proxy_Ptr.
00757 : ACE_Asynch_Result_Impl (), 00758 ACE_WIN32_Asynch_Result (handler_proxy, act, event, 0, 0, priority, 00759 signal_number), 00760 time_ (tv) 00761 { 00762 } |
|
This method calls the 's handle_timeout method.
Implements ACE_Asynch_Result_Impl. Definition at line 765 of file WIN32_Proactor.cpp. References ACE_Refcounted_Auto_Ptr< X, ACE_LOCK >::get(), and ACE_Handler::handle_time_out().
00769 { 00770 ACE_Handler *handler = this->handler_proxy_.get ()->handler (); 00771 if (handler != 0) 00772 handler->handle_time_out (this->time_, this->act ()); 00773 } |
|
The factory method for this class is with the POSIX_Proactor class. Reimplemented from ACE_WIN32_Asynch_Result. Definition at line 300 of file WIN32_Proactor.h. |
|
Time value requested by caller.
Definition at line 318 of file WIN32_Proactor.h. |