这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用于网络游戏医学图像网关的高qos要求.更详细的内容可阅读相应的材料

源代码在线查看: server.h

软件大小: 29384 K
上传用户: captainjn
关键词: qos 通信 开源 大容量
下载地址: 免注册下载 普通下载 VIP

相关代码

				// server.h,v 1.7 2002/01/29 20:20:41 okellogg Exp
				// -*- C++ -*-
				
				// ============================================================================
				//
				// = LIBRARY
				//    TAO/examples/Quoter
				//
				// = FILENAME
				//    quoter_server.h
				//
				// = DESCRIPTION
				//    Implements the Quoter_Server class which handles the initialization of
				//    the quoter implementations.
				//
				// = AUTHORS
				//    Darrell Brunsch (brunsch@cs.wustl.edu)
				//
				// ============================================================================
				
				#ifndef QUOTER_SERVER_H
				#define QUOTER_SERVER_H
				
				#include "ace/Get_Opt.h"
				
				#if !defined (ACE_LACKS_PRAGMA_ONCE)
				# pragma once
				#endif /* ACE_LACKS_PRAGMA_ONCE */
				
				#include "ace/Log_Msg.h"
				#include "orbsvcs/CosNamingC.h"
				#include "orbsvcs/Naming/Naming_Utils.h"
				#include "tao/PortableServer/ORB_Manager.h"
				#include "Quoter_i.h"
				#include "QuoterC.h"
				
				class Quoter_Server
				{
				  // =TITLE
				  //   Defines a Quoter Server class that implements the functionality
				  //   of a server process as an object.
				  //
				  // =DESCRIPTION
				  //   The interface is quite simple. A server program has to call
				  //   init to initialize the quoter_server's state and then call run
				  //   to run the orb.
				public:
				
				  Quoter_Server (void);
				  // Default constructor
				
				  ~Quoter_Server (void);
				  // Destructor
				
				  int init (int argc, char *argv[] ACE_ENV_ARG_DECL);
				  // Initialize the Quoter_Server state - parsing arguments and ...
				
				  int run (ACE_ENV_SINGLE_ARG_DECL);
				  // Run the server.
				
				private:
				  int parse_args (void);
				  // Parses the commandline arguments.
				
				  int init_naming_service (ACE_ENV_SINGLE_ARG_DECL);
				  // Initializes the name server and registers cubit factory with the
				  // name server.
				
				  int num_of_objs_;
				  // Number of quoter objects we export.
				
				  CosNaming::NamingContext_var namingContext_var_;
				  // Naming Service context
				
				  Quoter_Factory_i  *quoter_Factory_i_ptr_;
				  // Instantiate the Quoter Factory
				
				  TAO_ORB_Manager orb_manager_;
				  // The ORB manager.
				
				  int argc_;
				  // Number of commandline arguments.
				
				  char **argv_;
				  // commandline arguments.
				
				  int debug_level_;
				  // debug level (0 = quiet, 1 = default, informative, 2+ = noisy);
				};
				
				#endif /* QUOTER_SERVER_H */
							

相关资源