Forked from cartant/medium-rxjs-publish-multicast-delay.ts
Last active
July 20, 2019 22:16
-
-
Save LayZeeDK/583c5f8ed5bed9767ced414a47e21f4f 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"; | |
import { delay, multicast } from "rxjs/operators"; | |
const source = defer(() => of( | |
Math.floor(Math.random() * 100) | |
)).pipe( | |
delay(0), | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment