Last active
May 4, 2020 15:09
-
-
Save mendaomn/ff138bd714627668106bad89b5d263a9 to your computer and use it in GitHub Desktop.
Create an Rx.Observable out of setTimeout/setInterval
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 { Observable } from 'rxjs' | |
const fromTimeout = ts => Observable.create(observer => { | |
const handle = setTimeout(() => { | |
observer.next() | |
observer.complete() | |
}, ts) | |
return function dispose() { | |
observer.onComplete() | |
clearTimeout(handle) | |
} | |
}) | |
const wait1 = fromTimeout(1000) | |
const wait2 = fromTimeout(2000) | |
const waiting1 = wait1.subscribe(() => console.log(’This will never be printed’)) | |
const waiting2 = wait2.subscribe(() => console.log(’Time has passed’)) | |
waiting1.unsubscribe() // will never fire |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment