Table of Contents

Class TransportMessage

Namespace
Pamoja.Core
Assembly
Pamoja.Core.dll

A message that arrived on a subscribed topic.

public sealed record TransportMessage : IEquatable<TransportMessage>
Inheritance
TransportMessage
Implements
Inherited Members

Constructors

TransportMessage(string, byte[])

A message that arrived on a subscribed topic.

public TransportMessage(string Topic, byte[] Payload)

Parameters

Topic string

The topic it was published to.

Payload byte[]

The raw payload bytes.

Properties

Payload

The raw payload bytes.

public byte[] Payload { get; init; }

Property Value

byte[]

Topic

The topic it was published to.

public string Topic { get; init; }

Property Value

string