You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constpubsub=PubSub();pubsub.subscribe('MY_TOPIC',()=>{thrownewError('Oooops!!!');});pubsub.subscribe('MY_TOPIC',data=>{console.log('Won\'t enter here');});pubsub.publish('MY_TOPIC');
If first subscriber throws, then PubSub fails to deliver the topic to the second subscriber.