test_server_module.h
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C头文件 代码 · 共 72 行
H
72 行
// -*- C++ -*-
//=============================================================================
/**
* @file Test_Server_Module.h
*
* Test_Server_Module.h,v 1.3 2003/07/21 23:51:40 dhinton Exp
*
* @author Ossama Othman <ossama@uci.edu>
*/
//=============================================================================
#ifndef TEST_SERVER_MODULE_H
#define TEST_SERVER_MODULE_H
#include /**/ "ace/pre.h"
#include "Test_Server_Module_Export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "ace/Task.h"
#include "Test_i.h"
/**
* @class Test_Server_Module
*
* @brief The shared object that is instantiated when the server-side
* test module/library is dynamically loaded.
*
* This class handles all of the server-side ORB tasks, such as
* activating the test CORBA object, and running the ORB.
*/
class Test_Server_Module_Export Test_Server_Module : public ACE_Task_Base
{
public:
/// Initializes object when dynamic linking occurs.
virtual int init (int argc, ACE_TCHAR *argv[]);
/// Terminates object when dynamic unlinking occurs.
virtual int fini (void);
/// Run by a daemon thread to handle deferred processing.
virtual int svc (void);
private:
/// Reference to the ORB.
CORBA::ORB_var orb_;
/// Reference to the POA.
PortableServer::POA_var poa_;
/// Reference to the POA Manager.
PortableServer::POAManager_var poa_manager_;
/// The servant that implements the "Test" object.
Test_i servant_;
};
ACE_FACTORY_DECLARE (Test_Server_Module, Test_Server_Module)
#include /**/ "ace/post.h"
#endif /* TEST_SERVER_MODULE_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?