Signature
export declare function concatAll<T>(): T;
高阶流版本的concat
Example
var clicks = Rx.Observable.fromEvent(document, 'click'); |
就是子流一个结束了才继续下一个连接起来
Note: concatAll is equivalent to mergeAll with concurrency parameter set to 1.
export declare function concatAll<T>(): T;
高阶流版本的concat
var clicks = Rx.Observable.fromEvent(document, 'click'); |
就是子流一个结束了才继续下一个连接起来
Note: concatAll is equivalent to mergeAll with concurrency parameter set to 1.