Geovani
Member since Dec 2, 2016
- Profile: /members/13376-geovani.htm
- URL: http://twitter.com/geovanisouza92
- Comments: 2
Recent Blog Comments By Geovani
-
Performing The Stream Equivalent Of Promise.all() Using RxJS
Posted on Dec 6, 2016 at 2:42 PM
@Ben I'd the same feelings about it, but after learning about Cycle.js (and most of Andre Staltz' content) I have no doubt that Observables (the concept, at least) are the future. If you have some time on the future, take a look at the introduction about Cycle.js to see a Observable-first approach... read more »
-
Performing The Stream Equivalent Of Promise.all() Using RxJS
Posted on Dec 2, 2016 at 12:33 PM
Nice post, as always Ben! A thing that I could argue is that, if you put `.last()` on the Observables that emit more than one value, you get the same result with all three operators that you showed. `Observable.range(1, 4).last()` could be understood "semantically equals" to `Observable.... read more »