17.199. Class IResultTable.ChangeResultOwnershipRequest

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

Data structure to hold the results id and the new owner of the results in order to make batching easier

public record IResultTable.ChangeResultOwnershipRequest : IEquatable<IResultTable.ChangeResultOwnershipRequest>

17.199.1. Inheritance

objectIResultTable.ChangeResultOwnershipRequest

17.199.2. Implements

IEquatable<IResultTable.ChangeResultOwnershipRequest>

17.199.3. Inherited Members

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

17.199.4. Constructors

17.199.4.1. ChangeResultOwnershipRequest(IEnumerable<string>, string)

Data structure to hold the results id and the new owner of the results in order to make batching easier

public ChangeResultOwnershipRequest(IEnumerable<string> Keys, string NewTaskId)

17.199.4.1.1. Parameters

Keys IEnumerable<string>

Ids of the results that will change owner

NewTaskId string

Task id of the new owner

17.199.5. Properties

17.199.5.1. Keys

Ids of the results that will change owner

public IEnumerable<string> Keys { get; init; }

17.199.5.1.1. Property Value

IEnumerable<string>

17.199.5.2. NewTaskId

Task id of the new owner

public string NewTaskId { get; init; }

17.199.5.2.1. Property Value

string