22.205. 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>
22.205.1. Inheritance
22.205.2. Implements
22.205.3. Inherited Members
object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString()
22.205.4. Constructors
22.205.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)
22.205.4.1.1. Parameters
Keys IEnumerable<string>
Ids of the results that will change owner
NewTaskId string
Task id of the new owner
22.205.5. Properties
22.205.5.1. Keys
Ids of the results that will change owner
public IEnumerable<string> Keys { get; init; }
22.205.5.1.1. Property Value
22.205.5.2. NewTaskId
Task id of the new owner
public string NewTaskId { get; init; }