All Downloads are FREE. Search and download functionalities are using the official Maven repository.

js.web.webrtc.RTCOutboundRTPStreamStats Maven / Gradle / Ivy

package js.web.webrtc;


import org.teavm.jso.JSProperty;


public interface RTCOutboundRTPStreamStats extends RTCRTPStreamStats {
    @JSProperty
    int getBytesSent();

    @JSProperty
    void setBytesSent(int bytesSent);

    @JSProperty
    int getPacketsSent();

    @JSProperty
    void setPacketsSent(int packetsSent);

    @JSProperty
    double getRoundTripTime();

    @JSProperty
    void setRoundTripTime(double roundTripTime);

    @JSProperty
    int getTargetBitrate();

    @JSProperty
    void setTargetBitrate(int targetBitrate);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy