首页 > Web开发 > 详细

[RxJS] Flatten a higher order observable with mergeAll in RxJS

时间:2016-12-16 22:34:01      阅读:192      评论:0      收藏:0      [点我收藏+]

Among RxJS flattening operators, switch is the most commonly used operator. However, it is important to get acquainted with mergeAll, another flattening operator which allows multiple concurrent inner observables. In this lesson we will explore mergeAll in detail.

 

const clickObservable = Rx.Observable
  .fromEvent(document, click);

const clockObservable = clickObservable
  .map(click => Rx.Observable.interval(1000))
  .mergeAll(3); // allow 3 inner observables

// flattening
// Observable<Observable<number>> ---> Observable<number>

/*
--------+--------+------------------------
        \                 -0-1-2-3 -0-1-2-3-4-5-6
         
         mergeAll
         
----------0-1-2-3-405162738495...
*/

clockObservable
  .subscribe(x => console.log(x));

 

[RxJS] Flatten a higher order observable with mergeAll in RxJS

原文:http://www.cnblogs.com/Answer1215/p/6188371.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!