Skip to main content
Table of Contents

Enum BackgroundTaskStatus

Namespace
Stratara.Abstractions.BackgroundTasks
Assembly
Stratara.Abstractions.dll

Lifecycle states of a queued background task.

public enum BackgroundTaskStatus
Extension Methods

Fields

Completed = 2

Finished successfully.

Failed = 3

Threw an exception during execution.

Queued = 0

Enqueued, awaiting a worker pickup.

Running = 1

Picked up by a worker and executing.