sinch-rtc
Version:
RTC JavaScript/Web SDK
16 lines • 639 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TerminatedState = void 0;
const SessionState_1 = require("./SessionState");
const SessionStateBase_1 = require("../session/SessionStateBase");
class TerminatedState extends SessionStateBase_1.SessionStateBase {
constructor(session) {
super(SessionState_1.SessionState.Terminated, session);
}
handleInboundMessage(_) {
// TODO: Continue sending e.g. CANCEL/LEAVE if remote side is not stopping to send JOIN etc.
return true;
}
}
exports.TerminatedState = TerminatedState;
//# sourceMappingURL=TerminatedState.js.map