defaultIfEmpty
연산자(operator) 정의: defaultIfEmpty(defaultValue: any): Observable
Emit given value if nothing is emitted before completion.
Examples
Example 1: Default for empty value
const empty = Rx.Observable.of();
//emit 'Observable.of() Empty!' when empty, else any values from source
const exampleOne = empty.defaultIfEmpty('Observable.of() Empty!');
//output: 'Observable.of() Empty!'
const subscribe = exampleOne.subscribe(val => console.log(val));
Example 2: Default for Observable.empty
//empty observable
const empty = Rx.Observable.empty();
//emit 'Observable.empty()!' when empty, else any values from source
const example = empty.defaultIfEmpty('Observable.empty()!');
//output: 'Observable.empty()!'
const subscribe = example.subscribe(val => console.log(val));
Additional Resources
- defaultIfEmpty - Official docs
Source Code: https://github.com/ReactiveX/rxjs/blob/master/src/operator/defaultIfEmpty.ts