Go to the first, previous, next, last section, table of contents.
-
There are four forms of the select_statement. One form provides a
selective wait for one or more select_alternatives. Two provide timed
and conditional entry calls. The fourth provides asynchronous transfer
of control.
Syntax
-
select_statement ::=
selective_accept
| timed_entry_call
| conditional_entry_call
| asynchronous_select
Examples
-
Example of a select statement:
-
select
accept Driver_Awake_Signal;
or
delay 30.0*Seconds;
Stop_The_Train;
end select;
- 9.7.1: Selective Accept
- 9.7.2: Timed Entry Calls
- 9.7.3: Conditional Entry Calls
- 9.7.4: Asynchronous Transfer of Control
Go to the first, previous, next, last section, table of contents.