blob: dcb06d9030cb35b403694fdff27a66ed1fbe0d3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
//
// $Id$
//
#ifndef SERVER_TASK_H
#define SERVER_TASK_H
#include /**/ "ace/pre.h"
#include "tao/ORB.h"
#include "ace/Task.h"
/// Implement a simple ACE_Task to run the ORB event loop
/**
* This class is used to implement a simple thread pool.
*/
class Server_Task : public ACE_Task_Base
{
public:
/// Constructor
Server_Task (CORBA::ORB_ptr orb);
/// The thread entry point
virtual int svc (void);
private:
/// Keep a reference to the ORB
CORBA::ORB_var orb_;
};
#include /**/ "ace/post.h"
#endif /* SERVER_TASK_H */
|