UNPKG

kurento-client-elements

Version:

JavaScript Client API for Kurento Media Server

142 lines (113 loc) 3.29 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 disguise = kurentoClient.disguise; var checkType = kurentoClient.checkType; var ChecktypeError = checkType.ChecktypeError; var Transaction = kurentoClient.TransactionsManager.Transaction; var Hub = require('kurento-client-core').abstracts.Hub; function noop(error, result) { if (error) console.trace(error); return result }; /** * Create a {@link Dispatcher} belonging to the given pipeline. * * @classdesc * A {@link Hub} that allows routing between arbitrary port pairs * * @extends module:core/abstracts.Hub * * @constructor module:elements.Dispatcher */ function Dispatcher(){ Dispatcher.super_.call(this); }; inherits(Dispatcher, Hub); // // Public methods // /** * Connects each corresponding {@link MediaType} of the given source port with * the sink port. * * @alias module:elements.Dispatcher.connect * * @param {module:core.HubPort} source * Source port to be connected * * @param {module:core.HubPort} sink * Sink port to be connected * * @param {module:elements.Dispatcher~connectCallback} [callback] * * @return {external:Promise} */ Dispatcher.prototype.connect = function(source, sink, callback){ var transaction = (arguments[0] instanceof Transaction) ? Array.prototype.shift.apply(arguments) : undefined; // // checkType('HubPort', 'source', source, {required: true}); // // checkType('HubPort', 'sink', sink, {required: true}); // var params = { source: source, sink: sink }; callback = (callback || noop).bind(this) return disguise(this._invoke(transaction, 'connect', params, callback), this) }; /** * @callback module:elements.Dispatcher~connectCallback * @param {external:Error} error */ /** * @alias module:elements.Dispatcher.constructorParams * * @property {module:core.MediaPipeline} mediaPipeline * the {@link MediaPipeline} to which the dispatcher belongs */ Dispatcher.constructorParams = { mediaPipeline: { type: 'kurento.MediaPipeline', required: true } }; /** * @alias module:elements.Dispatcher.events * * @extends module:core/abstracts.Hub.events */ Dispatcher.events = Hub.events; /** * Checker for {@link module:elements.Dispatcher} * * @memberof module:elements * * @param {external:String} key * @param {module:elements.Dispatcher} value */ function checkDispatcher(key, value) { if(!(value instanceof Dispatcher)) throw ChecktypeError(key, Dispatcher, value); }; module.exports = Dispatcher; Dispatcher.check = checkDispatcher;