summaryrefslogtreecommitdiff
path: root/TAO/tao/Single_Reactor.h
blob: 44e5190f22e6835d2666178fa7acae08b56d6c39 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
// $Id$

// ============================================================================
//
// = LIBRARY
//   TAO
//
// = FILENAME
//   Single_Reactor.h
//
// = AUTHOR
//   Carlos O'Ryan (coryan@cs.wustl.edu)
//
// ============================================================================

#ifndef TAO_SINGLE_REACTOR_H
#define TAO_SINGLE_REACTOR_H

#include "tao/Reactor_Registry.h"

#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */

class TAO_Leader_Follower;

class TAO_Export TAO_Single_Reactor  : public TAO_Reactor_Registry
{
  // = TITLE
  //   The Single_Reactor concurrency strategy.
  //
  // = DESCRIPTION
  //   This strategy creates a different reactor for each priority
  //   level, threads at the right priority level run the event loop
  //   on that reactor.
  //   Multiple threads can share the same reactor, usually using the
  //   thread-pool strategy.
  //
public:
  TAO_Single_Reactor (void);
  // Default constructor

  virtual ~TAO_Single_Reactor (void);
  // The destructor

  // = The TAO_Reactor_Registry methods, please check the
  // documentation in tao/Reactor_Registry.h
  virtual void open (TAO_ORB_Core* orb_core);
  virtual ACE_Reactor *reactor (void);
  virtual ACE_Reactor *reactor (TAO_Acceptor *acceptor);
  virtual TAO_Leader_Follower &leader_follower (void);
  virtual TAO_Leader_Follower &leader_follower (TAO_Acceptor *acceptor);
  virtual void destroy_tss_cookie (void* cookie);
  virtual int shutdown_all (void);

private:
  TAO_Leader_Follower *leader_follower_;
  // The leader follower
};

#if defined (__ACE_INLINE__)
# include "tao/Single_Reactor.i"
#endif /* __ACE_INLINE__ */

#endif /* TAO_SINGLE_REACTOR_H */