sinch-rtc
Version:
RTC JavaScript/Web SDK
18 lines • 761 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.HighRemoteInboundRttWarningEvent = void 0;
/**
* Warning event emmitted when Round Trip Time (RTT) drops below 300 (for remote inbound stream).
*
* @param type - `Trigger` when the warning is emitted, `Recover` when the warning is recovered.
* @param mediaStreamType - The media stream type that the warning is related to.
*/
class HighRemoteInboundRttWarningEvent {
constructor(type, mediaStreamType) {
this.type = type;
this.mediaStreamType = mediaStreamType;
this.name = "highRemoteInboundRtt";
}
}
exports.HighRemoteInboundRttWarningEvent = HighRemoteInboundRttWarningEvent;
//# sourceMappingURL=HighRemoteInboundRttWarningEvent.js.map