#include "tao/Connection_Handler.h"#include "tao/ORB_Core.h"#include "tao/debug.h"#include "tao/Resume_Handle.h"#include "tao/Transport.h"#include "tao/Wait_Strategy.h"#include "ace/SOCK.h"#include "ace/Reactor.h"#include "ace/os_include/sys/os_socket.h"#include "ace/Svc_Handler.h"
Go to the source code of this file.
Functions | |
| ACE_RCSID (tao, Connection_Handler,"$Id: Connection_Handler.cpp 86593 2009-09-02 14:58:00Z vzykov $") 1 TAO_Connection_Handler | |
| ACE_RCSID | ( | tao | , | |
| Connection_Handler | , | |||
| "$Id: Connection_Handler.cpp 86593 2009-09-02 14:58:00Z vzykov $" | ||||
| ) |
Definition at line 21 of file Connection_Handler.cpp.
00023 : Connection_Handler.cpp 86593 2009-09-02 14:58:00Z vzykov $") 00024 00025 TAO_BEGIN_VERSIONED_NAMESPACE_DECL 00026 00027 TAO_Connection_Handler::TAO_Connection_Handler (TAO_ORB_Core *orb_core) 00028 : orb_core_ (orb_core), 00029 transport_ (0), 00030 connection_pending_ (false), 00031 is_closed_ (false) 00032 { 00033 // Put ourselves in the connection wait state as soon as we get 00034 // created 00035 this->state_changed (TAO_LF_Event::LFS_CONNECTION_WAIT, 00036 this->orb_core_->leader_follower ()); 00037 }
1.6.1