summaryrefslogtreecommitdiff
path: root/TAO/tao/Single_Reactor.h
blob: 7cb88d60a8bd6df38e486592823e2b6cbdf5ff71 (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

//=============================================================================
/**
 *  @file   Single_Reactor.h
 *
 *  $Id$
 *
 *  @author Carlos O'Ryan (coryan@cs.wustl.edu)
 */
//=============================================================================


#ifndef TAO_SINGLE_REACTOR_H
#define TAO_SINGLE_REACTOR_H
#include "ace/pre.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_Single_Reactor
 *
 * @brief The Single_Reactor concurrency strategy.
 *
 * 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.
 */
class TAO_Export TAO_Single_Reactor  : public TAO_Reactor_Registry
{
public:
  /// Default constructor
  TAO_Single_Reactor (void);

  /// The destructor
  virtual ~TAO_Single_Reactor (void);

  // = 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:
  /// The leader follower
  TAO_Leader_Follower *leader_follower_;
};

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

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