CAU_Delay_Types - Event delay types.
When defining user reactions on events, action handlers can be called immediately, at end of transaction or at end of top transaction.
Enumarators overview
- RDT_end_of_TA
 (2) - React at end of transaction
 
- RDT_immediately
 (1) - React immediately
 
- RDT_top_of_TA
 (3) - React at end of top transaction
 
- RDT_undefined
 (0) - Type undefined
 
Enumerator details
- 
RDT_undefined - Type undefined
 In this case, the action is never executed. Thus, this type can be used to disable the reaction. Code: 0
 to list
- 
RDT_immediately - React immediately
 The action is executed immediately after the event has been raised. Code: 1
 to list
- 
RDT_end_of_TA - React at end of transaction
 The action is executed at the end of the current transaction, in which the event has happened. When no transaction is defined, the action is executed immediately. Code: 2
 to list
- 
RDT_top_of_TA - React at end of top transaction
 The action is executed at the end of the last (top) transaction. When no transaction is defined, the action is executed immediately. Code: 3
 to list

