ft_defaultfaultanalyzer.h

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

H
87
字号
/* -*- C++ -*- */
//=============================================================================
/**
 *  @file    FT_DefaultFaultAnalyzer.h
 *
 *  FT_DefaultFaultAnalyzer.h,v 1.2 2003/12/22 01:44:37 wilson_d Exp
 *
 *  This file is part of TAO's implementation of Fault Tolerant CORBA.
 *  This is the default implementation of a fault analyzer that
 *  implements the interface of the abstract base class
 *  TAO::FT_FaultAnalyzer.
 *
 *  @author Steve Totten <totten_s@ociweb.com>
 */
//=============================================================================


#ifndef FT_DEFAULT_FAULT_ANALYZER_H_
#define FT_DEFAULT_FAULT_ANALYZER_H_

#include /**/ "ace/pre.h"
#include <ace/ACE.h>

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

#include "FT_ReplicationManagerLib_export.h"
#include "FT_FaultAnalyzer.h"

namespace TAO
{

  /**
  * Default fault analyzer.
  *
  */
  class TAO_ReplicationManagerLib_Export FT_DefaultFaultAnalyzer
    : public ::TAO::FT_FaultAnalyzer
  {

  public:
    /**
    * Default constructor.
    */
    FT_DefaultFaultAnalyzer ();

    /**
    * Destructor.
    */
    virtual ~FT_DefaultFaultAnalyzer ();

  public:

    /**
    * Validate event type to make sure it is one we can handle.
    * @param event The structured fault event, as from the Fault Notifier.
    * @return 0 if it is a valid event type, -1 otherwise.
    */
    virtual int validate_event_type (
      const CosNotification::StructuredEvent & event);

    /**
    * Analyze a fault event.
    * @param event The structured fault event, as from the Fault Notifier.
    * @return 0 on success, -1 on failure.
    */
    virtual int analyze_fault_event (
      const CosNotification::StructuredEvent & event);

    ////////////////////
    // Forbidden methods
  private:
    /// Copy constructor.
    FT_DefaultFaultAnalyzer (const FT_DefaultFaultAnalyzer & rhs);
    /// Assignment operator.
    FT_DefaultFaultAnalyzer & operator = (const FT_DefaultFaultAnalyzer & rhs);

  };

} // namespace TAO

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

#endif  /* FT_DEFAULT_FAULT_ANALYZER_H_ */

⌨️ 快捷键说明

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