📄 client_task.h
字号:
//
// Client_Task.h,v 1.4 2003/10/28 18:30:41 bala Exp
//
#ifndef AMI_BUFFERING_CLIENT_TASK_H
#define AMI_BUFFERING_CLIENT_TASK_H
#include /**/ "ace/pre.h"
#include "tao/ORB.h"
#include "ace/Task.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
/// Implement a Task to run the experiments using multiple threads.
class Client_Task : public ACE_Task_Base
{
public:
/// Constructor
Client_Task (CORBA::ORB_ptr orb);
/// Terminate the loop
void terminate_loop (void);
/// Thread entry point
int svc (void);
private:
/// Reference to the ORB
CORBA::ORB_var orb_;
/// A mutex, synchronize access to the termination flag
TAO_SYNCH_MUTEX mutex_;
/// Termination flag, set to 1 when the client wants this task to
/// exit
int terminate_loop_;
};
#include /**/ "ace/post.h"
#endif /* AMI_BUFFERING_CLIENT_TASK_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -