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

elemental2.dom.RTCRemoteOutboundRtpStreamStats Maven / Gradle / Ivy

The newest version!
package elemental2.dom;
import jsinterop.annotations.JsProperty;
import elemental2.dom.RTCSentRtpStreamStats;
import jsinterop.base.Js;
import java.lang.Double;
import jsinterop.annotations.JsOverlay;
import java.lang.Object;
import java.lang.String;
import jsinterop.annotations.JsType;
import jsinterop.annotations.JsPackage;
import elemental2.core.JsDate;
@JsType(isNative = true,namespace = JsPackage.GLOBAL)
public interface RTCRemoteOutboundRtpStreamStats extends RTCSentRtpStreamStats{
@JsType(isNative = true,name = "?",namespace = JsPackage.GLOBAL)
public interface GetRemoteTimestampUnionType{
@JsOverlay
static RTCRemoteOutboundRtpStreamStats.GetRemoteTimestampUnionType of(Object o){
return Js.cast(o);
}
@JsOverlay
default double asDouble(){
return Js.asDouble(this);
}
@JsOverlay
default JsDate asJsDate(){
return Js.cast(this);
}
@JsOverlay
default boolean isDouble(){
return (Object)this instanceof Double;
}
@JsOverlay
default boolean isJsDate(){
return (Object)this instanceof JsDate;
}
}
@JsProperty
String getLocalId();
@JsProperty
RTCRemoteOutboundRtpStreamStats.GetRemoteTimestampUnionType getRemoteTimestamp();
@JsProperty
double getReportsSent();
@JsProperty
double getRoundTripTime();
@JsProperty
double getRoundTripTimeMeasurements();
@JsProperty
double getTotalRoundTripTime();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy