Documentation
    Preparing search index...

    Interface IEncoder

    interface IEncoder {
        contentTopic: string;
        ephemeral: boolean;
        pubsubTopic: string;
        routingInfo: IRoutingInfo;
        toProtoObj: (message: IMessage) => Promise<undefined | IProtoMessage>;
        toWire: (
            message: IMessage,
        ) => Promise<undefined | Uint8Array<ArrayBufferLike>>;
    }

    Implemented by

    Index

    Properties

    contentTopic: string
    ephemeral: boolean
    pubsubTopic: string
    routingInfo: IRoutingInfo
    toProtoObj: (message: IMessage) => Promise<undefined | IProtoMessage>
    toWire: (message: IMessage) => Promise<undefined | Uint8Array<ArrayBufferLike>>