Table of Contents

Struct BatchedMessageInfo

Namespace
DotCompute.Abstractions.Messaging
Assembly
DotCompute.Abstractions.dll

Information about a single message within a batch.

public readonly record struct BatchedMessageInfo : IEquatable<BatchedMessageInfo>
Implements
Inherited Members

Properties

Length

Gets the length of this message within the payload.

public required int Length { get; init; }

Property Value

int

MessageId

Gets the message identifier.

public required Guid MessageId { get; init; }

Property Value

Guid

MessageType

Gets the message type identifier.

public required string MessageType { get; init; }

Property Value

string

Offset

Gets the offset within the batch payload.

public required int Offset { get; init; }

Property Value

int