ExecutionOrder

Represents the execution order guarantee of a scheduler.

Entries

Link copied to clipboard

The scheduler guarantees a sequential execution order. Tasks are executed in the order they were received.

Link copied to clipboard

The scheduler does not guarantee a sequential execution order. Tasks may be executed concurrently or in a different order than received.

Link copied to clipboard

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

Link copied to clipboard

Returns a representation of an immutable list of all enum entries, in the order they're declared.

Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard

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.)

Link copied to clipboard

Returns an array containing the constants of this enum type, in the order they're declared.