Table of Contents

Enum TaskStatus

Namespace
Apache.Ignite.Compute
Assembly
Apache.Ignite.dll

Compute task status.

public enum TaskStatus

Fields

Canceled = 5

The task was successfully cancelled.

Canceling = 4

The task has received the cancel command, but is still running.

Completed = 3

The task was executed successfully and the execution result was returned.

Executing = 1

The task is being executed.

Failed = 2

The task was unexpectedly terminated during execution.

Queued = 0

The task is submitted and waiting for an execution start.