You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 26, 2022. It is now read-only.
Is there any reason not to use Observables or Streams for this? As far as I understand these are push based APIs. Why do we need 2, in the future potentially 3 with Streams, APIs for a single type of effect?
For all other type of effects I know exactly what to use (T, Promise<T>, Iterator<T>). What's the fourth one? Observable<T>? Stream<T>? AsyncIterator<T>?
Maybe I don't see the big picture, but I don't understand why we can't have a unified interface for this.