Forked from cartant/medium-rxjs-publish-mental-model.ts
Last active
July 20, 2019 15:21
-
-
Save LayZeeDK/76d23c6b7dc4efdf2607889cda9dd7e6 to your computer and use it in GitHub Desktop.
RxJS ≥6 version
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { defer, Observable, of, Subject } from "rxjs"; | |
const source = defer(() => of( | |
Math.floor(Math.random() * 100) | |
)); | |
function observer(name: string) { | |
return { | |
next: (value: number) => console.log(`observer ${name}: ${value}`), | |
complete: () => console.log(`observer ${name}: complete`) | |
}; | |
} | |
const subject = new Subject<number>(); | |
subject.subscribe(observer("a")); | |
subject.subscribe(observer("b")); | |
source.subscribe(subject); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment