Skip to content
timeout.hh 1.32 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"
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 {
  check* _check;
  bool _final;

 public:
  timeout(check* chk = NULL, bool final = false);
  timeout(timeout const& t) = delete;
  timeout& operator=(timeout const& t) = delete;
  void run();
};
}  // namespace checks
#endif  // !CCCP_CHECKS_TIMEOUT_HH