Class DataBatch
- Namespace
- Orleans.GpuBridge.Runtime.Persistent
- Assembly
- Orleans.GpuBridge.Runtime.dll
Represents a batch of data for kernel processing.
public sealed class DataBatch
- Inheritance
-
DataBatch
- Inherited Members
Properties
CompletedAt
Gets or sets the timestamp when the batch processing completed.
public DateTime? CompletedAt { get; set; }
Property Value
Data
Gets the data payload for this batch.
public Memory<byte> Data { get; init; }
Property Value
Id
Gets the unique identifier for this batch.
public string Id { get; init; }
Property Value
Metadata
Gets optional metadata associated with this batch.
public Dictionary<string, object>? Metadata { get; init; }
Property Value
SubmittedAt
Gets the timestamp when the batch was submitted.
public DateTime SubmittedAt { get; init; }