Table of Contents

Class JobState

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

Compute job state.

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

Constructors

JobState(Guid, JobStatus, Instant, Instant?, Instant?)

Compute job state.

public JobState(Guid Id, JobStatus Status, Instant CreateTime, Instant? StartTime, Instant? FinishTime)

Parameters

Id Guid

Job ID.

Status JobStatus

Job 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

Job 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

Job status.

public JobStatus Status { get; init; }

Property Value

JobStatus