Table of Contents

Class TaskState

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

Compute task state.

public sealed record TaskState : IEquatable<TaskState>
Inheritance
TaskState
Implements
Inherited Members

Constructors

TaskState(Guid, TaskStatus, Instant, Instant?, Instant?)

Compute task state.

public TaskState(Guid Id, TaskStatus Status, Instant CreateTime, Instant? StartTime, Instant? FinishTime)

Parameters

Id Guid

Task ID.

Status TaskStatus

Task status.

CreateTime Instant

Create time.

StartTime Instant?

Start time (null when not yet started).

FinishTime Instant?

Finish time (null when not yet finished).

Properties

CreateTime

Create time.

public Instant CreateTime { get; init; }

Property Value

Instant

FinishTime

Finish time (null when not yet finished).

public Instant? FinishTime { get; init; }

Property Value

Instant?

Id

Task ID.

public Guid Id { get; init; }

Property Value

Guid

StartTime

Start time (null when not yet started).

public Instant? StartTime { get; init; }

Property Value

Instant?

Status

Task status.

public TaskStatus Status { get; init; }

Property Value

TaskStatus