vue-mvvm / core / DelegateMode
DelegateMode
Enum representing the modes of delegation.
DelegateMode provides the following modes:
- PARALLEL: Represents a mode where actions are executed concurrently.
- SEQUENTIAL: Represents a mode where actions are executed in a defined order, one after the other.
Enumeration Members
PARALLEL
ts
PARALLEL: 0;SEQUENTIAL
ts
SEQUENTIAL: 1;