Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save cartant/7a8ccf508da47b886e3b6ab4ce9a8918 to your computer and use it in GitHub Desktop.
Save cartant/7a8ccf508da47b886e3b6ab4ce9a8918 to your computer and use it in GitHub Desktop.
const source = instrument(Observable.interval(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