Rich Ellis
Member since May 25, 2017
- Profile: /members/13523-rich-ellis.htm
- Comments: 3
Recent Blog Comments By Rich Ellis
-
Experimenting With The .catch() Operator And Stream Continuation In RxJS And Angular 2
Posted on Jun 6, 2017 at 9:14 AM
Since I wrote that I've done more reading (Dave Sexton's blog). Using publish fixed the infinite loop problem. These things are powerful and interesting, but they do have their place. The learning curve is significant.... read more »
-
Experimenting With The .catch() Operator And Stream Continuation In RxJS And Angular 2
Posted on May 26, 2017 at 10:03 AM
...aaaand if I use a Subject instead of a ReplaySubject, catch works as expected. So your approach works great after all. Thanks!... read more »
-
Experimenting With The .catch() Operator And Stream Continuation In RxJS And Angular 2
Posted on May 25, 2017 at 4:14 PM
Similar problem. I'm using switchMap, and at first thought I could handle errors from the projected observable using catch(), but of course it turns out that an error terminates the entire chain, and of course that isn't what I want. What I really want is to handle errors when they happen, but keep ... read more »