![]() |
![]() |
![]() |
![]() |
![]() |
The operation allows to wait for the expiration of a timer.
Related keywords:
( timer_identifier | any timer ).timeout ; |
timer_identifier is the name used to refer to the timer. It must begin with a letter, may contain letters, numbers and underscore characters.
It is possible to check a member of an timer array.
timer_identifier[array_index].timeout; |
timer_identifier is the name used to refer to the timer. It must begin with a letter, may contain letters, numbers and underscore characters.
array_index points out the timer to be checked.
T_rejaillir.timeout;
The program execution is suspended until the timer T_rejaillir expires.
[] any timer.timeout { … };
This alternative in the alt statement will be invoked when any of the timers has just expired.
Tl_feu[4].timeout;
The program execution is suspended until the fifth timer in the array T_feu expires.
BNF definition of timeout