23.234. Class TaskStatusCount

Namespace: ArmoniK.Core.Common.Storage
Assembly: ArmoniK.Core.Common.dll

Relation between a task status and the number of tasks with this status

public record TaskStatusCount : IEquatable<TaskStatusCount>

23.234.1. Inheritance

objectTaskStatusCount

23.234.2. Implements

IEquatable<TaskStatusCount>

23.234.3. Inherited Members

object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString()

23.234.4. Extension Methods

TaskStatusCountExt.ToGrpcStatusCount(TaskStatusCount)

23.234.5. Constructors

23.234.5.1. TaskStatusCount(TaskStatus, int)

Relation between a task status and the number of tasks with this status

public TaskStatusCount(TaskStatus Status, int Count)

23.234.5.1.1. Parameters

Status TaskStatus

Status of the task

Count int

Number of tasks with the associated status

23.234.6. Properties

23.234.6.1. Count

Number of tasks with the associated status

public int Count { get; init; }

23.234.6.1.1. Property Value

int

23.234.6.2. Status

Status of the task

public TaskStatus Status { get; init; }

23.234.6.2.1. Property Value

TaskStatus