blob: 2da60584c360a38eef8dadaadf8060984269149b (
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
|
//
// $Id$
//
#ifndef BIG_ONEWAYS_SESSION_CONTROL_H
#define BIG_ONEWAYS_SESSION_CONTROL_H
#include /**/ "ace/pre.h"
#include "TestS.h"
/// Implement the Test::Session_Control interface
class Session_Control
: public virtual POA_Test::Session_Control
{
public:
/// Constructor
/**
* @param session_count Number of session objects in the experiment.
*/
Session_Control (CORBA::ULong session_count);
/// Destructor
virtual ~Session_Control (void);
/// Return 1 when all sessions have finished
int all_sessions_finished (void) const;
// = The skeleton methods
virtual void session_finished (CORBA::Boolean success);
private:
/// Synchronize the internal state
ACE_SYNCH_MUTEX mutex_;
/// The type of test
CORBA::ULong session_count_;
/// Set to falso if any session reported a failure
CORBA::Boolean success_;
};
#include /**/ "ace/post.h"
#endif /* BIG_ONEWAYS_SESSION_CONTROL_H */
|