summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/LoadBalancer/Push_Handler.h
blob: 7913a399f727591b3b068242e4bdb643ecdc1680 (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
66
// -*- C++ -*-

//=======================================================================
/**
 *  @file    Push_Handler.h
 *
 *  $Id$
 *
 *  @author  Ossama Othman <ossama@uci.edu>
 */
//=======================================================================


#ifndef TAO_LB_PUSH_HANDLER_H
#define TAO_LB_PUSH_HANDLER_H

#include /**/ "ace/pre.h"

#include "ace/config-all.h"

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

#include "orbsvcs/CosLoadBalancingC.h"

#include "ace/Event_Handler.h"


/**
 * @class TAO_LB_Push_Handler
 *
 * @brief Event handler used when the "push" monitoring style is
 *        configured.
 *
 * An event handler designed to push loads to the LoadManager.
 */
class TAO_LB_Push_Handler : public ACE_Event_Handler
{
public:

  /// Constructor
  TAO_LB_Push_Handler (CosLoadBalancing::LoadMonitor_ptr monitor,
                       const PortableGroup::Location & location,
                       CosLoadBalancing::LoadManager_ptr manager);

  /// Receive the timeout event.
  virtual int handle_timeout (const ACE_Time_Value &current_time,
                              const void *arg);

private:

  /// Reference to the LoadMonitor.
  CosLoadBalancing::LoadMonitor_var monitor_;

  /// Location where the LoadMonitor resides.
  const PortableGroup::Location location_;

  /// Reference to the LoadManager.
  CosLoadBalancing::LoadManager_var manager_;

};

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

#endif  /* TAO_LB_PUSH_HANDLER_H */