Apama 10.7.2 | Developing Apama Applications | EPL Reference | Statements | Transfer of control statements
 
Transfer of control statements
 
The break statement
The continue statement
The die statement
The return statement
Transfer of control statements alter the normal control path by stopping the sequential execution of statements within a block. All of them end execution of the block that contains them. After a continue statement is executed, the containing block might be executed again in a new loop iteration. The die and return statements also end the action in which they are executed.