Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save LayZeeDK/334e249e1195579d27a1647f21bc9e7b to your computer and use it in GitHub Desktop.
Save LayZeeDK/334e249e1195579d27a1647f21bc9e7b to your computer and use it in GitHub Desktop.
RxJS ≥6 version
const source = instrument(interval(100));
const counted = source.pipe(publish(), refCount());
const a = counted.pipe(take(1)).subscribe(observer("a"));
const b = counted.pipe(take(1)).subscribe(observer("b"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment