Skip to content

Instantly share code, notes, and snippets.

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