ignoreElements
signature: ignoreElements(): Observable
Ignore everything but complete and error.
Examples
Example 1: Ignore all elements from source
import { interval } from 'rxjs/observable/interval';
import { take, ignoreElements } from 'rxjs/operators';
//emit value every 100ms
const source = interval(100);
//ignore everything but complete
const example = source.pipe(take(5), ignoreElements());
//output: "COMPLETE!"
const subscribe = example.subscribe(
val => console.log(`NEXT: ${val}`),
val => console.log(`ERROR: ${val}`),
() => console.log('COMPLETE!')
);
Example 2: Only displaying error
import { interval } from 'rxjs/observable/interval';
import { _throw } from 'rxjs/observable/throw';
import { of } from 'rxjs/observable/of';
import { mergeMap, ignoreElements } from 'rxjs/operators';
//emit value every 100ms
const source = interval(100);
//ignore everything but error
const error = source.pipe(
mergeMap(val => {
if (val === 4) {
return _throw(`ERROR AT ${val}`);
}
return of(val);
}),
ignoreElements()
);
//output: "ERROR: ERROR AT 4"
const subscribe = error.subscribe(
val => console.log(`NEXT: ${val}`),
val => console.log(`ERROR: ${val}`),
() => console.log('SECOND COMPLETE!')
);
Additional Resources
- ignoreElements
- Official docs
Source Code:
https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/ignoreElements.ts