libp2p
    Preparing search index...

    Interface FloodSubInit

    interface FloodSubInit {
        canRelayMessage?: boolean;
        emitSelf?: boolean;
        globalSignaturePolicy?: SignaturePolicy;
        maxInboundStreams?: number;
        maxOutboundStreams?: number;
        messageProcessingConcurrency?: number;
        protocol?: string;
        seenTTL?: number;
    }
    Index

    Properties

    canRelayMessage?: boolean

    if can relay messages not subscribed

    emitSelf?: boolean

    if publish should emit to self, if subscribed

    globalSignaturePolicy?: SignaturePolicy

    defines how signatures should be handled

    maxInboundStreams?: number

    How many parallel incoming streams to allow on the pubsub protocol per-connection

    maxOutboundStreams?: number

    How many parallel outgoing streams to allow on the pubsub protocol per-connection

    messageProcessingConcurrency?: number

    handle this many incoming pubsub messages concurrently

    protocol?: string

    Override the protocol registered with the registrar

    '/floodsub/1.0.0'
    
    seenTTL?: number