libp2p
    Preparing search index...

    Interface TopologyFilter

    A topology filter - this can be used by topologies to ensure they do not receive duplicate notifications of individual peers

    interface TopologyFilter {
        add(peerId: PeerId): void;
        has(peerId: PeerId): boolean;
        remove(peerId: PeerId): void;
    }
    Index

    Methods

    Methods