Skip to content

Instantly share code, notes, and snippets.

@LayZeeDK
Forked from cartant/medium-rxjs-publish.ts
Last active July 20, 2019 22:29
Show Gist options
  • Save LayZeeDK/a83e2fbb43deb291c69e0d14fe1db4c5 to your computer and use it in GitHub Desktop.
Save LayZeeDK/a83e2fbb43deb291c69e0d14fe1db4c5 to your computer and use it in GitHub Desktop.
import { concat, defer, Observable, of } from "rxjs";
import { delay, publish } from "rxjs/operators";
function random() {
return Math.floor(Math.random() * 100);
}
const source = concat(
defer(() => of(random())),
defer(() => of(random())).pipe(delay(1))
);
function observer(name: string) {
return {
next: (value: number) => console.log(`observer ${name}: ${value}`),
complete: () => console.log(`observer ${name}: complete`)
};
}
const p = source.pipe(publish());
p.subscribe(observer("a"));
p.connect();
p.subscribe(observer("b"));
setTimeout(() => p.subscribe(observer("c")), 10);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment