Rx.Observable.ofWithScheduler([scheduler], ...args)
Converts arguments to an observable sequence, using an optional scheduler to enumerate the arguments.
Arguments
[scheduler]
(Scheduler): An optional scheduler used to enumerate the arguments.args
(Arguments): A list of arguments to turn into an Observable sequence.
Returns
(Observable
): The observable sequence whose elements are pulled from the given arguments.
Example
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
Location
File:
Dist:
Prerequisites:
- None
NPM Packages:
NuGet Packages:
Unit Tests: