Skip to content
timeout.hh 1.62 KiB
Newer Older
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
**     http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
** For more information : contact@centreon.com
*/

#ifndef CCCP_CHECKS_TIMEOUT_HH
#  define CCCP_CHECKS_TIMEOUT_HH

#  include <cstddef>
#  include "com/centreon/connector/perl/namespace.hh"
#  include "com/centreon/task.hh"

CCCP_BEGIN()

namespace    checks {
  // Forward declaration.
  class      check;

  /**
   *  @class timeout timeout.hh "com/centreon/connector/perl/checks/timeout.hh"
   *  @brief Check timeout.
   *
   *  Task executed when a check timeouts.
   */
  class      timeout : public com::centreon::task {
  public:
             timeout(check* chk = NULL, bool final = false);
             timeout(timeout const& t);
             ~timeout() throw ();
    timeout& operator=(timeout const& t);
    check*   get_check() const throw ();
    bool     is_final() const throw ();
    void     run();
    void     set_check(check* chk) throw ();
    void     set_final(bool final) throw ();

  private:
    void     _internal_copy(timeout const& t);

    check*   _check;
    bool     _final;
  };
}

CCCP_END()

#endif // !CCCP_CHECKS_TIMEOUT_HH