doc/api/core/operators/ofwithscheduler.md
Rx.Observable.ofWithScheduler([scheduler], ...args)Converts arguments to an observable sequence, using an optional scheduler to enumerate the arguments.
[scheduler] (Scheduler): An optional scheduler used to enumerate the arguments.args (Arguments): A list of arguments to turn into an Observable sequence.(Observable): The observable sequence whose elements are pulled from the given arguments.
var source = Rx.Observable.ofWithScheduler(Rx.Scheduler.timeout, 1,2,3);
var subscription = source.subscribe(
function (x) {
console.log('Next: ' + x);
},
function (err) {
console.log('Error: ' + err);
},
function () {
console.log('Completed');
});
// => Next: 1
// => Next: 2
// => Next: 3
// => Completed
File:
Dist:
Prerequisites:
NPM Packages:
NuGet Packages:
Unit Tests: