Nick Tower
Member since Feb 22, 2016
- Profile: /members/13060-nick-tower.htm
- Comments: 2
Recent Blog Comments By Nick Tower
-
Throwing Errors In The Future Using RxJS In Angular 2 Beta 6
Posted on Feb 22, 2016 at 12:53 AM
Another option: Rx.Observable.never() .timeout(5000, Rx.Observable.throw('error')) (And while i've been throwing strings, you could of course throw an error object as you did in your versions)... read more »
-
Throwing Errors In The Future Using RxJS In Angular 2 Beta 6
Posted on Feb 22, 2016 at 12:06 AM
Another option to delay an error: rx.Observable.timer(5000) .do(() => {throw('error')})... read more »