THEOplayer Web SDK
    Preparing search index...

    Interface MeasurableNetworkEstimator

    A NetworkEstimator that allows measuring the current network state.

    interface MeasurableNetworkEstimator {
        bandwidth: number;
        roundTripTime: number;
        createMeasurer(request: Request): undefined | RequestMeasurer;
    }

    Hierarchy (View Summary)

    Index

    Properties

    bandwidth: number

    The estimated network bandwidth in bit/s.

    roundTripTime: number

    The estimated HTTP request round trip time.

    Methods