Friday, April 16, 2021

Do you need to wrap RXJS Observables in try-catch?

 No.

Internally errors are caught implicitly.

Here is a good example, give it a swing yourself! (Source)


import { throwError, of, Observable } from 'rxjs';
import { catchError, map } from 'rxjs/operators';
const exampleOne$ = new Observable(subscriber => {
throw new Error('thrown');
});
exampleOne$.pipe(
catchError(val => of(`Exmaple One ${val}`))
).subscribe(console.log); // Exmaple One Error: thrown
const exampleTwo$ = new Observable(subscriber => {
try {
throw new Error('native error')
}
catch (e) {
subscriber.error(e);
}
});
exampleTwo$.pipe(
catchError(val => of(`Example Two ${val}`))
).subscribe(console.log); // Example Two Error: thrown

No comments:

Post a Comment