Interface IRootIncomingMessageEnvelope<T>

An incoming message to the root agent from a proxy

interface IRootIncomingMessageEnvelope<T> {
    channelId: string;
    payload: T;
}

Type Parameters

Properties

Properties

channelId: string

Indicates which channel (which maps to a given proxy agent) the message was received from

payload: T