company logo

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

Enumerator details

  1. 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
  2. RDT_immediately - React immediately

    The action is executed immediately after the event has been raised.

    Code: 1
    to list
  3. 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
  4. 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