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
MessageId
Gets the message identifier.
public required Guid MessageId { get; init; }
Property Value
MessageType
Gets the message type identifier.
public required string MessageType { get; init; }
Property Value
Offset
Gets the offset within the batch payload.
public required int Offset { get; init; }