Skip to content

Latest commit

 

History

History
23 lines (13 loc) · 815 Bytes

pausablebuffered.md

File metadata and controls

23 lines (13 loc) · 815 Bytes

{% if book.isPdf %}

pausableBuffered

{% else %}

{% endif %}

Pauses the underlying observable sequence based upon the observable sequence which yields true/false, and yields the values that were buffered while paused. Note that this only works on hot observables.

Arguments

  1. pauser (Rx.Subject): The observable sequence used to pause the underlying sequence.

Returns

(Observable): The observable sequence which is paused based upon the pauser.

Example