Observable.Buffer<TSource> Method (IObservable<TSource>, Int32)
Indicates each element of an observable sequence into consecutive non-overlapping buffers which are produced based on element count information.
Namespace: System.Reactive.Linq
Assembly: System.Reactive (in System.Reactive.dll)
public static IObservable<IList<TSource>> Buffer<TSource>( this IObservable<TSource> source, int count )
Type Parameters
- TSource
The type source.
Parameters
- source
- Type: System.IObservable<TSource>
The source sequence to produce buffers over.
- count
- Type: System.Int32
The length of each buffer.