blob: 313c0be7b06bcb892808f0246163505e24b6ac74 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
//
// $Id$
//
#ifndef LONGUPCALLS_MANAGER_H
#define LONGUPCALLS_MANAGER_H
#include "TestS.h"
#include "ace/Task.h"
class Manager
: public virtual POA_Test::Manager
{
public:
Manager (CORBA::ORB_ptr orb);
// Constructor
// = The skeleton methods
virtual void start_workers (CORBA::Short worker_count,
CORBA::Long milliseconds,
Test::Controller_ptr controller)
ACE_THROW_SPEC ((CORBA::SystemException));
virtual void shutdown (void)
ACE_THROW_SPEC ((CORBA::SystemException));
private:
CORBA::ORB_var orb_;
// The ORB, to shutdown
};
// ****************************************************************
class Worker : public ACE_Task_Base
{
public:
Worker (ACE_Thread_Manager *thr_mgr,
Test::Controller_ptr controller,
CORBA::Long milliseconds);
virtual int svc (void);
// The service method
private:
Test::Controller_var controller_;
// The controller pointer
CORBA::Long milliseconds_;
// The number of milliseconds.
};
#endif /* LONGUPCALLS_MANAGER_H */
|