rps_monitor.h
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C头文件 代码 · 共 95 行
H
95 行
// -*- C++ -*-
//=============================================================================
/**
* @file RPS_Monitor.h
*
* RPS_Monitor.h,v 1.1 2003/08/01 09:46:33 ossama Exp
*
* @author Ossama Othman <ossama@dre.vanderbilt.edu>
*/
//=============================================================================
#ifndef TAO_RPS_MONITOR_H
#define TAO_RPS_MONITOR_H
#include /**/ "ace/pre.h"
#include "orbsvcs/CosLoadBalancingS.h"
# if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
# endif /* ACE_LACKS_PRAGMA_ONCE */
class ServerRequestInterceptor;
/**
* @class RPS_Monitor
*
* @brief LoadMonitor implementation that calculates the number of
* request arriving per second.
*/
class RPS_Monitor
: public virtual POA_CosLoadBalancing::LoadMonitor,
public virtual PortableServer::RefCountServantBase
{
public:
/// Constructor
RPS_Monitor (ServerRequestInterceptor * interceptor);
/**
* @name CosLoadBalancing::LoadMonitor Methods
*
* Methods required by the CosLoadBalancing::LoadMonitor interface.
*/
//@{
/// Return the location at which the LoadMonitor resides.
/**
* The returned "Location" is a sequence of length 1.
*/
virtual CosLoadBalancing::Location * the_location (
ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS)
ACE_THROW_SPEC ((CORBA::SystemException));
/// Return the average CPU load at the location which this
/// LoadMonitor resides.
/**
* @return A "Load" sequence of length 1 that contains a LoadId
* equal to CosLoadBalancing::CPU, and the average CPU
* load.
*/
virtual CosLoadBalancing::LoadList * loads (
ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS)
ACE_THROW_SPEC ((CORBA::SystemException));
//@}
protected:
/// Destructor
/**
* Protected destructor to enforce proper memory management through
* reference counting.
*/
~RPS_Monitor (void);
private:
/// The name of the location at which this LoadMonitor resides.
CosLoadBalancing::Location location_;
ServerRequestInterceptor * interceptor_;
ACE_Time_Value last_time_;
ACE_SYNCH_MUTEX lock_;
};
#include /**/ "ace/post.h"
#endif /* TAO_RPS_MONITOR_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?