windowToggle
Branch out the source Observable values as a nested Observable starting from
an emission from openings
and ending when the output of closingSelector
emits.
Parameters
Returns
OperatorFunction<T, Observable<T>>
: An observable of windows, which in turn
are Observables.
Description
It's like bufferToggle
, but emits a nested
Observable instead of an array.
Returns an Observable that emits windows of items it collects from the source
Observable. The output Observable emits windows that contain those items
emitted by the source Observable between the time when the openings
Observable emits an item and when the Observable returned by
closingSelector
emits an item.
Example
Every other second, emit the click events from the next 500ms