summaryrefslogtreecommitdiff
path: root/TAO/tests/Big_Oneways/Coordinator.h
blob: 1f1c19bf448c74e4b3a01c05c8b19e8a59cce58d (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
52
//
// $Id$
//

#ifndef BIG_ONEWAYS_COORDINATOR_H
#define BIG_ONEWAYS_COORDINATOR_H
#include /**/ "ace/pre.h"

#include "TestS.h"

/// Implement the Test::Coordinator interface
class Coordinator
  : public virtual POA_Test::Coordinator
{
public:
  /// Constructor
  Coordinator (CORBA::ULong peer_count);


  /// Check if all the peers have registered already
  int has_all_peers (void) const;

  /// Check a session on each peer
  void create_session_list (Test::Session_Control_ptr session_control,
                            CORBA::ULong payload_size,
                            CORBA::ULong thread_count,
                            CORBA::ULong message_count,
                            Test::Session_List &session_list);

  /// Shutdown all the peers
  void shutdown_all_peers (void);

  // = The skeleton methods
  virtual void add_peer (Test::Peer_ptr peer);

protected:
  /// Protected Destructor, call _remove_ref() instead
  virtual ~Coordinator (void);

private:
  /// Store a reference to each peer
  Test::Peer_var *peers_;

  /// Current number of elements in the array
  size_t peer_count_;

  /// Array's capacity
  size_t peer_max_;
};

#include /**/ "ace/post.h"
#endif /* BIG_ONEWAYS_COORDINATOR_H */