* Calls this timer. */
| 123 | * Calls this timer. |
| 124 | */ |
| 125 | void 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. |