]> granicus.if.org Git - icinga2/blob - lib/checker/checkercomponent.ti
add some object locking to the Dump method (which could theoreticylly suffer from...
[icinga2] / lib / checker / checkercomponent.ti
1 /* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2
3 #include "base/configobject.hpp"
4
5 library checker;
6
7 namespace icinga
8 {
9
10 class CheckerComponent : ConfigObject
11 {
12         activation_priority 300;
13
14         /* Has no effect. Keep this here to avoid breaking config changes. */
15         [deprecated, config] int concurrent_checks;
16 };
17
18 }