bufferWithCount method

  1. @deprecated
Observable<List<TResult>> bufferWithCount (int count, [ int skip ])

Deprecated: Please use bufferCount

Creates an Observable where each item is a List containing the items from the source sequence, in batches of count.

If skip is provided, each group will start where the previous group ended minus the skip value.

Example

Observable.range(1, 4).bufferWithCount(2)
  .listen(print); // prints [1, 2], [3, 4]

Example with skip

Observable.range(1, 4)
  .bufferWithCount(2, 1)
  .listen(print); // prints [1, 2], [2, 3], [3, 4], [4]

Implementation

@deprecated
Observable<List<T>> bufferWithCount(int count, [int skip]) => transform(
    new BufferStreamTransformer<T>(onCount<T, List<T>>(count, skip)));