This is RxJS v 4. Find the latest version here
Uses selector to determine which source in sources to use. There is an alias 'switchCase' for browsers <IE9.
selector(Function): The function which extracts the value for to test in a case statement.sources(Object): An object which has keys which correspond to the case statement labels.[elseSource|scheduler](Observable|Scheduler): The observable sequence that will be run if the sources are not matched. If this is not provided, it defaults toRx.Observabe.emptywith the specified scheduler.
(Observable): An observable sequence which is determined by a case statement.
var sources = {
'foo': Rx.Observable.return(42),
'bar': Rx.Observable.return(56)
};
var defaultSource = Rx.Observable.empty();
var source = Rx.Observable.case(
function () {
return 'foo';
},
sources,
defaultSource);
var subscription = source.subscribe(
function (x) {
console.log('Next: ' + x);
},
function (err) {
console.log('Error: ' + err);
},
function () {
console.log('Completed');
});
//=> Next: 42
//=> CompletedFile:
Dist:
Prerequisites:
- If using
rx.expermental.js
NPM Packages:
NuGet Packages:
Unit Tests: