📄 lb_pull_handler.h
字号:
// -*- C++ -*-
//=======================================================================
/**
* @file LB_Pull_Handler.h
*
* LB_Pull_Handler.h,v 1.3 2003/07/21 23:51:31 dhinton Exp
*
* @author Ossama Othman <ossama@uci.edu>
*/
//=======================================================================
#ifndef TAO_LB_PULL_HANDLER_H
#define TAO_LB_PULL_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 "LB_MonitorMap.h"
#include "ace/Event_Handler.h"
/// Forward declarations.
class TAO_LB_LoadManager;
/**
* @class TAO_LB_Pull_Handler
*
* @brief Event handler used when the "pull" monitoring style is
* configured.
*
* An event handler designed to pull loads from all load monitors
* registered with the load balancer.
*/
class TAO_LB_Pull_Handler : public ACE_Event_Handler
{
public:
/// Constructor
TAO_LB_Pull_Handler (void);
/// Receive the timeout event.
virtual int handle_timeout (const ACE_Time_Value ¤t_time,
const void *arg);
/// Initialize this event handler.
void initialize (TAO_LB_MonitorMap * monitor_map,
TAO_LB_LoadManager * load_manager);
private:
/// The table that contains all load monitors registered with the
/// load balancer.
TAO_LB_MonitorMap * monitor_map_;
/// Pointer to the LoadManager servant.
TAO_LB_LoadManager * load_manager_;
};
#include /**/ "ace/post.h"
#endif /* TAO_LB_PULL_HANDLER_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -