Skip to content

Instantly share code, notes, and snippets.

@Ibro
Last active April 29, 2017 04:48
Show Gist options
  • Save Ibro/6841844d8608f2349739ad7f6c9b080a to your computer and use it in GitHub Desktop.
Save Ibro/6841844d8608f2349739ad7f6c9b080a to your computer and use it in GitHub Desktop.
RxJS - Error Handling - Coding Blast - www.codingblast.com
import {Observable} from 'rxjs';
Observable
.of('CodingBlast', 'cuteword', 'badword', 'coding', 'blast')
.map(w => {
if (w === 'badword') {
throw new Error('Bad things happen!')
}
return w + ' RxJS';
})
.retry(2)
.subscribe(value => console.log(value),
err => console.error('oops, an error!', err),
() => console.log('complete!'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment