Code coverage report for cjs/operator/subscribeOn.js

Statements: 100% (6 / 6)      Branches: 100% (2 / 2)      Functions: 100% (1 / 1)      Lines: 100% (5 / 5)      Ignored: none     

All files » cjs/operator/ » subscribeOn.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 161                   1 7 7   1  
var SubscribeOnObservable_1 = require('../observable/SubscribeOnObservable');
/**
 * Asynchronously subscribes Observers to this Observable on the specified Scheduler.
 *
 * <img src="./img/subscribeOn.png" width="100%">
 *
 * @param {Scheduler} the Scheduler to perform subscription actions on.
 * @returns {Observable<T>} the source Observable modified so that its subscriptions happen on the specified Scheduler
 .
 */
function subscribeOn(scheduler, delay) {
    if (delay === void 0) { delay = 0; }
    return new SubscribeOnObservable_1.SubscribeOnObservable(this, delay, scheduler);
}
exports.subscribeOn = subscribeOn;
//# sourceMappingURL=subscribeOn.js.map