orb_run_task.h
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C头文件 代码 · 共 45 行
H
45 行
/* -*- C++ -*- */
/**
* @file ORB_Run_Task.h
*
* ORB_Run_Task.h,v 1.4 2003/10/28 18:34:05 bala Exp
*
* @author Pradeep Gore <pradeep@oomworks.com>
*
*
*/
#ifndef TAO_Notify_ORB_RUN_TASK_H
#define TAO_Notify_ORB_RUN_TASK_H
#include /**/ "ace/pre.h"
#include "ace/Task.h"
#include "ORB_Objects.h"
/**
* @class TAO_Notify_ORB_Run_Task
*
* @brief Run the ORB::run method in a seperate thread.
*
*/
class TAO_Notify_ORB_Run_Task : public ACE_Task_Base
{
public:
/// Constuctor
TAO_Notify_ORB_Run_Task (TAO_Notify_ORB_Objects& orb_objects);
/// Destructor
~TAO_Notify_ORB_Run_Task ();
/// The thread entry point.
virtual int svc (void);
private:
/// ORB Objects.
TAO_Notify_ORB_Objects orb_objects_;
};
#include /**/ "ace/post.h"
#endif /* TAO_Notify_ORB_RUN_TASK_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?