UNPKG

kurento-client-elements

Version:

JavaScript Client API for Kurento Media Server

115 lines (98 loc) 3.38 kB
/* Autogenerated with Kurento Idl */ /* * (C) Copyright 2013-2015 Kurento (https://kurento.openvidu.io/) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ var inherits = require('inherits'); var kurentoClient = require('kurento-client'); var checkType = kurentoClient.checkType; var ChecktypeError = checkType.ChecktypeError; var ComplexType = require('kurento-client-core').complexTypes.ComplexType; /** * IceCandidate representation based on <code>RTCIceCandidate</code> interface. * @see <a * href='https://www.w3.org/TR/2018/CR-webrtc-20180927/#rtcicecandidate-interface'>ice * * @constructor module:elements/complexTypes.IceCandidate * * @property {external:String} candidate * The candidate-attribute as defined in section 15.1 of ICE (rfc5245). * @property {external:String} sdpMid * If present, this contains the identifier of the 'media stream * identification'. * @property {external:Integer} sdpMLineIndex * The index (starting at zero) of the m-line in the SDP this candidate is * associated with. */ function IceCandidate(iceCandidateDict){ if(!(this instanceof IceCandidate)) return new IceCandidate(iceCandidateDict) iceCandidateDict = iceCandidateDict || {} // Check iceCandidateDict has the required fields // // checkType('String', 'iceCandidateDict.candidate', iceCandidateDict.candidate, {required: true}); // // checkType('String', 'iceCandidateDict.sdpMid', iceCandidateDict.sdpMid, {required: true}); // // checkType('int', 'iceCandidateDict.sdpMLineIndex', iceCandidateDict.sdpMLineIndex, {required: true}); // // Init parent class IceCandidate.super_.call(this, iceCandidateDict) // Set object properties Object.defineProperties(this, { candidate: { writable: true, enumerable: true, value: iceCandidateDict.candidate }, sdpMid: { writable: true, enumerable: true, value: iceCandidateDict.sdpMid }, sdpMLineIndex: { writable: true, enumerable: true, value: iceCandidateDict.sdpMLineIndex } }) } inherits(IceCandidate, ComplexType) // Private identifiers to allow re-construction of the complexType on the server // They need to be enumerable so JSON.stringify() can access to them Object.defineProperties(IceCandidate.prototype, { __module__: { enumerable: true, value: "kurento" }, __type__: { enumerable: true, value: "IceCandidate" } }) /** * Checker for {@link module:elements/complexTypes.IceCandidate} * * @memberof module:elements/complexTypes * * @param {external:String} key * @param {module:elements/complexTypes.IceCandidate} value */ function checkIceCandidate(key, value) { if(!(value instanceof IceCandidate)) throw ChecktypeError(key, IceCandidate, value); }; module.exports = IceCandidate; IceCandidate.check = checkIceCandidate;