Subscriber should not stop on error in observable
问题 I am struggling with a subscriber, which automatically unsubscribe itself on error: observable .subscribe( (data) => { // some logic encountering an error during execution // comparable to throw new Error() } ) I can prevent it with using try / catch: observable .subscribe( (data) => try { // some logic encountering an error during execution // comparable to throw new Error() } catch(e) { } ) But it feels like a work around. I have dived into the source of Subscriber and SafeSubscriber, which