Método Qbservable.Buffer<TSource> (IQbservable<TSource>, TimeSpan, TimeSpan)
Indica cada elemento de una secuencia observable consultable en cero o más búferes que se generan en función de la información de tiempo.
Espacio de nombres:System.Reactive.Linq
Ensamblaje: System.Reactive.Providers (en System.Reactive.Providers.dll)
Sintaxis
'Declaration
<ExtensionAttribute> _
Public Shared Function Buffer(Of TSource) ( _
source As IQbservable(Of TSource), _
timeSpan As TimeSpan, _
timeShift As TimeSpan _
) As IQbservable(Of IList(Of TSource))
'Usage
Dim source As IQbservable(Of TSource)
Dim timeSpan As TimeSpan
Dim timeShift As TimeSpan
Dim returnValue As IQbservable(Of IList(Of TSource))
returnValue = source.Buffer(timeSpan, _
timeShift)
public static IQbservable<IList<TSource>> Buffer<TSource>(
this IQbservable<TSource> source,
TimeSpan timeSpan,
TimeSpan timeShift
)
[ExtensionAttribute]
public:
generic<typename TSource>
static IQbservable<IList<TSource>^>^ Buffer(
IQbservable<TSource>^ source,
TimeSpan timeSpan,
TimeSpan timeShift
)
static member Buffer :
source:IQbservable<'TSource> *
timeSpan:TimeSpan *
timeShift:TimeSpan -> IQbservable<IList<'TSource>>
JScript does not support generic types and methods.
Parámetros de tipo
- TSource
Origen del tipo.
Parámetros
- source
Tipo: System.Reactive.Linq.IQbservable<TSource>
Secuencia de origen para generar búferes.
- intervalo de tiempo
Tipo: System.TimeSpan
Longitud de cada búfer.
- Timeshift
Tipo: System.TimeSpan
Intervalo entre la creación de búferes consecutivos.
Valor devuelto
Tipo: System.Reactive.Linq.IQbservable<IList<TSource>>
Secuencia observable consultable de búferes.
Nota sobre el uso
En Visual Basic y C#, puede llamar a este método como método de instancia en cualquier objeto de tipo IQbservable<TSource>. Cuando emplee la sintaxis del método de instancia para llamar a este método, omita el primer parámetro. Para obtener más información, vea o .