Table of Contents

Enum WorkStatus

Namespace
DotCompute.Abstractions.Types
Assembly
DotCompute.Abstractions.dll

Defines the status of a work item in the execution pipeline. Used for tracking work items through the execution lifecycle.

public enum WorkStatus

Fields

Cancelled = 5

Work item was cancelled before or during execution.

Completed = 3

Work item has completed successfully.

Executing = 2

Work item is currently executing.

Failed = 4

Work item execution failed with an error.

Pending = 0

Work item has been created but not yet queued.

Queued = 1

Work item is queued and waiting for execution.

Retrying = 7

Work item is being retried after a failure.

Suspended = 8

Work item is suspended and waiting for resources.

TimedOut = 6

Work item timed out during execution.