#include <Acceptor_Impl.h>
Inheritance diagram for TAO_Accept_Strategy< SVC_HANDLER, >:
Public Member Functions | |
TAO_Accept_Strategy (TAO_ORB_Core *orb_core) | |
Constructor. | |
int | open (const ACE_PEER_ACCEPTOR_ADDR &local_addr, int restart=0) |
int | accept_svc_handler (SVC_HANDLER *svc_handler) |
Protected Types | |
typedef ACE_Accept_Strategy< SVC_HANDLER, ACE_PEER_ACCEPTOR_2 > | ACCEPT_STRATEGY_BASE |
Base class. | |
Protected Attributes | |
TAO_ORB_Core * | orb_core_ |
Pointer to the ORB Core. |
Definition at line 82 of file Acceptor_Impl.h.
typedef ACE_Accept_Strategy<SVC_HANDLER, ACE_PEER_ACCEPTOR_2> TAO_Accept_Strategy< SVC_HANDLER, >::ACCEPT_STRATEGY_BASE [protected] |
TAO_Accept_Strategy< SVC_HANDLER, >::TAO_Accept_Strategy | ( | TAO_ORB_Core * | orb_core | ) |
Constructor.
Definition at line 183 of file Acceptor_Impl.cpp.
00184 : orb_core_ (orb_core) 00185 { 00186 }
int TAO_Accept_Strategy< SVC_HANDLER, >::accept_svc_handler | ( | SVC_HANDLER * | svc_handler | ) | [virtual] |
Delegates to the <accept> method of the PEER_ACCEPTOR. If the process runs out of handles, purge some "old" connections.
Reimplemented from ACE_Accept_Strategy< SVC_HANDLER, ACE_PEER_ACCEPTOR_2 >.
Definition at line 198 of file Acceptor_Impl.cpp.
References ACE_Accept_Strategy< SVC_HANDLER, ACE_PEER_ACCEPTOR_2 >::accept_svc_handler().
00199 { 00200 return ACCEPT_STRATEGY_BASE::accept_svc_handler (svc_handler); 00201 }
int TAO_Accept_Strategy< SVC_HANDLER, >::open | ( | const ACE_PEER_ACCEPTOR_ADDR & | local_addr, | |
int | restart = 0 | |||
) | [virtual] |
Initialize the <peer_acceptor_> with <local_addr>. If the process runs out of handles, purge some "old" connections.
Reimplemented from ACE_Accept_Strategy< SVC_HANDLER, ACE_PEER_ACCEPTOR_2 >.
Definition at line 189 of file Acceptor_Impl.cpp.
References open().
00191 { 00192 00193 return ACCEPT_STRATEGY_BASE::open (local_addr, 00194 restart); 00195 }
TAO_ORB_Core* TAO_Accept_Strategy< SVC_HANDLER, >::orb_core_ [protected] |