Skip to content

Instantly share code, notes, and snippets.

@Ibro
Created May 13, 2017 02:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ibro/d08b2bdda77c5c388bdc3da95851cd17 to your computer and use it in GitHub Desktop.
Save Ibro/d08b2bdda77c5c388bdc3da95851cd17 to your computer and use it in GitHub Desktop.
RxJS - Hot Observable - Coding Blast - www.codingblast.com
import {Observable} from 'rxjs';
let source = Observable
.interval(1000)
.take(6)
.publish();
source.connect();
setTimeout(function () {
source.subscribe(x => console.log('sub 1: ', x));
}, 2700);
setTimeout(function () {
source.subscribe(x => console.log(' sub 2: ', x));
}, 3700);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment