null_connection_purging_strategy.h

来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C头文件 代码 · 共 50 行

H
50
字号
// ================================================================
/**
 *  @file   NULL_Connection_Purging_Strategy.h
 *
 *  NULL_Connection_Purging_Strategy.h,v 1.6 2003/07/21 23:51:39 dhinton Exp
 *
 *  @author Chad Elliott (elliott_c@ociweb.com)
 */
// ================================================================

#ifndef TAO_NULL_PURGING_STRATEGY_H
#define TAO_NULL_PURGING_STRATEGY_H
#include /**/ "ace/pre.h"

#include "strategies_export.h"

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

#include "tao/Connection_Purging_Strategy.h"


/**
 * @class TAO_NULL_Connection_Purging_Strategy
 *
 * @brief The null connection purging strategy
 *
 * This class does not do anything.
 */

class TAO_Strategies_Export TAO_NULL_Connection_Purging_Strategy: public TAO_Connection_Purging_Strategy
{
public:
  /// The constructor
  TAO_NULL_Connection_Purging_Strategy (int cache_maximum);

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

  /// Does nothing.
  virtual void update_item (TAO_Transport* transport);

  /// Returns -1 to signify no maximum
  virtual int cache_maximum (void) const;
};

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

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?