libp2p
    Preparing search index...

    Interface StreamMuxerInit

    interface StreamMuxerInit {
        direction?: Direction;
        onIncomingStream(stream: Stream): void;
        onStreamEnd(stream: Stream): void;
    }
    Index

    Properties

    direction?: Direction

    Outbound stream muxers are opened by the local node, inbound stream muxers are opened by the remote

    Methods