23.199. Class ResultStatusUpdate

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

Represents an status update for a result

public record ResultStatusUpdate : IEquatable<ResultStatusUpdate>

23.199.1. Inheritance

objectResultStatusUpdate

23.199.2. Implements

IEquatable<ResultStatusUpdate>

23.199.3. Inherited Members

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

23.199.4. Constructors

23.199.4.1. ResultStatusUpdate(string, string, ResultStatus)

Represents an status update for a result

public ResultStatusUpdate(string SessionId, string ResultId, ResultStatus Status)

23.199.4.1.1. Parameters

SessionId string

The id of the session

ResultId string

The id of the result

Status ResultStatus

The new status of the result

23.199.5. Properties

23.199.5.1. ResultId

The id of the result

public string ResultId { get; init; }

23.199.5.1.1. Property Value

string

23.199.5.2. SessionId

The id of the session

public string SessionId { get; init; }

23.199.5.2.1. Property Value

string

23.199.5.3. Status

The new status of the result

public ResultStatus Status { get; init; }

23.199.5.3.1. Property Value

ResultStatus