Newer
Older
Matthieu Kermagoret
committed
** Copyright 2011-2013 Centreon
Matthieu Kermagoret
committed
** 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
Matthieu Kermagoret
committed
** http://www.apache.org/licenses/LICENSE-2.0
Matthieu Kermagoret
committed
** 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.
Matthieu Kermagoret
committed
** For more information : contact@centreon.com
*/
#ifndef CCCP_CHECKS_TIMEOUT_HH
# define CCCP_CHECKS_TIMEOUT_HH
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# 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