Skip to content

Instantly share code, notes, and snippets.

@mendaomn
Last active May 4, 2020 15:09
Show Gist options
  • Save mendaomn/ff138bd714627668106bad89b5d263a9 to your computer and use it in GitHub Desktop.
Save mendaomn/ff138bd714627668106bad89b5d263a9 to your computer and use it in GitHub Desktop.
Create an Rx.Observable out of setTimeout/setInterval
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