@sovereignbase/actor-channel
    Preparing search index...

    Type Alias ActorChannelPair

    The transport interface used by ChannelBroker to communicate with an actor channel.

    type ActorChannelPair = {
        readyState: number;
        send: (data: ArrayBuffer) => void;
    }
    Index
    readyState: number

    The current transport ready state.

    send: (data: ArrayBuffer) => void

    Sends an encoded protocol message to the channel.