Rx.Observable.concat(...args)

</rx-marbles>

concat

拼接所有指定可观察序列,创建一个输出Observable,它会按拼接顺序发出所有值。

参数

  1. args (Array | arguments): 传入需要拼接的Observable(可观察流) 或 Promises.

返回值

(Observable): 返回一个按拼接顺序发出所有值的Observable

拼接可观察对象 Observable
/* Using Observable sequences */
var source1 = Rx.Observable.return(42);
var source2 = Rx.Observable.return(56);

var source = Rx.Observable.concat(source1, source2);

var subscription = source.subscribe(
  x => console.log(`onNext: ${x}`),
  e => console.log(`onError: ${e}`),
  () => console.log('onCompleted'));

// => onNext: 42
// => onNext: 56
// => onCompleted

拼接 PromisesObservable

/* Using Promises and Observable sequences */
var source1 = Rx.Observable.return(42);
var source2 = RSVP.Promise.resolve(56);

var source = Rx.Observable.concat(source1, source2);

var subscription = source.subscribe(
  x => console.log(`onNext: ${x}`),
  e => console.log(`onError: ${e}`),
  () => console.log('onCompleted'));

// => onNext: 42
// => onNext: 56
// => onCompleted

results matching ""

    No results matching ""