client_task.h
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C头文件 代码 · 共 53 行
H
53 行
//
// Client_Task.h,v 1.5 2003/07/21 23:51:40 dhinton Exp
//
#ifndef CLIENT_LEAKS_CLIENT_TASK_H
#define CLIENT_LEAKS_CLIENT_TASK_H
#include /**/ "ace/pre.h"
#include "TestC.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 (Test::Process_Factory_ptr process_Factory,
int iterations);
/// Return the total number of sucessful calls
int successful_calls (void) const;
/// Thread entry point
int svc (void);
private:
/// Run one iteration of the test
int one_iteration (ACE_ENV_SINGLE_ARG_DECL);
/// Make sure that the thread has a connection available
void validate_connection (ACE_ENV_SINGLE_ARG_DECL);
private:
/// Reference to the test interface
Test::Process_Factory_var process_factory_;
/// Total number of processes created by each thread
int iterations_;
/// At least some calls must be successful
int successful_calls_;
/// Implement the Monitor Object Pattern.
TAO_SYNCH_MUTEX mutex_;
};
#include /**/ "ace/post.h"
#endif /* CLIENT_LEAKS_CLIENT_TASK_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?