Table of Contents

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

DateTime?

Data

Gets the data payload for this batch.

public Memory<byte> Data { get; init; }

Property Value

Memory<byte>

Id

Gets the unique identifier for this batch.

public string Id { get; init; }

Property Value

string

Metadata

Gets optional metadata associated with this batch.

public Dictionary<string, object>? Metadata { get; init; }

Property Value

Dictionary<string, object>

SubmittedAt

Gets the timestamp when the batch was submitted.

public DateTime SubmittedAt { get; init; }

Property Value

DateTime