MCPcopy Create free account
hub / github.com/Icinga/icinga2 / Call

Method Call

lib/base/timer.cpp:125–136  ·  view source on GitHub ↗

* Calls this timer. */

Source from the content-addressed store, hash-verified

123 * Calls this timer.
124 */
125void Timer::Call()
126{
127 try {
128 OnTimerExpired(this);
129 } catch (...) {
130 InternalReschedule(true);
131
132 throw;
133 }
134
135 InternalReschedule(true);
136}
137
138/**
139 * Sets the interval for this timer.

Callers 1

TimerThreadProcMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected