Skip to content

Instantly share code, notes, and snippets.

@cartant
Last active July 20, 2019 22:51
Show Gist options
  • Save cartant/377416b12dabaa572902386f95fd6c31 to your computer and use it in GitHub Desktop.
Save cartant/377416b12dabaa572902386f95fd6c31 to your computer and use it in GitHub Desktop.
const source = instrument(Observable.timer(100));
const counted = source.publish().refCount();
const a = counted.subscribe(observer("a"));
setTimeout(() => a.unsubscribe(), 110);
setTimeout(() => counted.subscribe(observer("b")), 120);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment