peerix - v0.1.0
    Preparing search index...

    Interface ChannelOptions

    Options used to create negotiated RTCDataChannel instances.

    interface ChannelOptions {
        label?: string;
        maxPacketLifeTime?: number;
        maxRetransmits?: number;
        ordered?: boolean;
        protocol?: string;
    }
    Index

    Properties

    label?: string

    Channel label. If omitted, the default label will be used.

    maxPacketLifeTime?: number

    Maximum packet lifetime in milliseconds.

    maxRetransmits?: number

    Maximum retransmission attempts.

    ordered?: boolean

    Whether ordered delivery is required.

    protocol?: string

    Optional subprotocol name.