You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.2 KiB
31 lines
1.2 KiB
"use strict"; |
|
var SubscribeOnObservable_1 = require('../observable/SubscribeOnObservable'); |
|
/** |
|
* Asynchronously subscribes Observers to this Observable on the specified IScheduler. |
|
* |
|
* <img src="./img/subscribeOn.png" width="100%"> |
|
* |
|
* @param {Scheduler} scheduler - The IScheduler to perform subscription actions on. |
|
* @return {Observable<T>} The source Observable modified so that its subscriptions happen on the specified IScheduler. |
|
. |
|
* @method subscribeOn |
|
* @owner Observable |
|
*/ |
|
function subscribeOn(scheduler, delay) { |
|
if (delay === void 0) { delay = 0; } |
|
return function subscribeOnOperatorFunction(source) { |
|
return source.lift(new SubscribeOnOperator(scheduler, delay)); |
|
}; |
|
} |
|
exports.subscribeOn = subscribeOn; |
|
var SubscribeOnOperator = (function () { |
|
function SubscribeOnOperator(scheduler, delay) { |
|
this.scheduler = scheduler; |
|
this.delay = delay; |
|
} |
|
SubscribeOnOperator.prototype.call = function (subscriber, source) { |
|
return new SubscribeOnObservable_1.SubscribeOnObservable(source, this.delay, this.scheduler).subscribe(subscriber); |
|
}; |
|
return SubscribeOnOperator; |
|
}()); |
|
//# sourceMappingURL=subscribeOn.js.map
|