CombineLatest Method

RxJS

Merges two observable sequences into one observable sequence by using the selector function whenever one of the observable sequences has a new value.

Namespace:  Rx
Assembly:  RxJS (in RxJS.dll)

Syntax

JavaScript
function CombineLatest(right, selector);

Parameters

right
Type: Rx..::.Observable
selector
Type: System..::.FuncObjectObjectObject

See Also