connection_handler_connector.h
来自「ACE自适配通信环境(ADAPTIVE Communication Enviro」· C头文件 代码 · 共 45 行
H
45 行
/* -*- C++ -*- */// Connection_Handler_Connector.h,v 4.2 1998/10/20 02:34:17 levine Exp// ============================================================================//// = LIBRARY// gateway//// = FILENAME// Connection_Handler_Connector.h//// = AUTHOR// Doug Schmidt//// ============================================================================#ifndef _IO_HANDLER_CONNECTOR#define _IO_HANDLER_CONNECTOR#include "ace/Connector.h"#if !defined (ACE_LACKS_PRAGMA_ONCE)# pragma once#endif /* ACE_LACKS_PRAGMA_ONCE */#include "ace/SOCK_Connector.h"#include "Connection_Handler.h"class Connection_Handler_Connector : public ACE_Connector<Connection_Handler, ACE_SOCK_CONNECTOR>{ // = TITLE // A concrete factory class that setups connections to peerds // and produces a new Connection_Handler object to do the dirty // work...public: Connection_Handler_Connector (void); // Initiate (or reinitiate) a connection on the Connection_Handler. int initiate_connection (Connection_Handler *, ACE_Synch_Options & = ACE_Synch_Options::synch);};#endif /* _IO_HANDLER_CONNECTOR */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?