Execution Order
Represents the execution order guarantee of a scheduler.
Entries
The scheduler guarantees a sequential execution order. Tasks are executed in the order they were received.
The scheduler does not guarantee a sequential execution order. Tasks may be executed concurrently or in a different order than received.
The execution order of the scheduler is unknown. This is typically used when the scheduler is a wrapper around another service or dispatcher where the execution order cannot be directly determined. It is important to note that 'Unknown' should not be treated as 'OutOfOrder'. It may represent a sequential scheduler and any optimization assuming an 'OutOfOrder' execution may potentially disrupt the actual execution order.
Properties
Functions
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
Returns an array containing the constants of this enum type, in the order they're declared.