udp_client_i.h
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C头文件 代码 · 共 67 行
H
67 行
// -*- C++ -*-
// UDP_Client_i.h,v 1.2 2003/10/28 18:34:42 bala Exp
// ============================================================================
//
// = LIBRARY
// TAO/examples/Simple/UDP
//
// = FILENAME
// UDP_Client_i.h
//
// = DESCRIPTION
// This class implements the client functionality of the UDP test.
//
// = AUTHOR
// Michael Kircher <Michael.Kircher@mchp.siemens.de>
//
// ============================================================================
#ifndef UDP_CLIENT_I_H
#define UDP_CLIENT_I_H
#include "ace/Task.h"
#include "tao/ORB.h"
#include "UDPC.h"
class UDP_Client_i
: public ACE_Task_Base
{
// = TITLE
// UDP Client interface subclass.
//
// = DESCRIPTION
// This class wrapps the client functionality into one class
//
public:
// = Initialization and termination methods.
UDP_Client_i (CORBA::ORB_ptr orb,
UDP_ptr udp,
UDP_ptr udpHandler,
ACE_UINT32 msec,
ACE_UINT32 iterations);
// Constructor
virtual ~UDP_Client_i (void);
// Destructor
private:
// Runs in a separate thread.
virtual int svc (void );
private:
CORBA::ORB_var orb_;
UDP_var udp_;
UDP_var udpHandler_;
ACE_UINT32 delay_;
ACE_UINT32 iterations_;
};
#endif /* UDP_CLIENT_I_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?