Observable.Window < TSource > 方法 (IObservable < TSource > 、TimeSpan、Int32)
將可觀察序列的每個元素投影到完成的視窗中,當它已滿或經過指定的時間量時。
Namespace:System.Reactive.Linq
裝配: System.Reactive.dll) 中的 System.Reactive (
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function Window(Of TSource) ( _
source As IObservable(Of TSource), _
timeSpan As TimeSpan, _
count As Integer _
) As IObservable(Of IObservable(Of TSource))
'Usage
Dim source As IObservable(Of TSource)
Dim timeSpan As TimeSpan
Dim count As Integer
Dim returnValue As IObservable(Of IObservable(Of TSource))
returnValue = source.Window(timeSpan, _
count)
public static IObservable<IObservable<TSource>> Window<TSource>(
this IObservable<TSource> source,
TimeSpan timeSpan,
int count
)
[ExtensionAttribute]
public:
generic<typename TSource>
static IObservable<IObservable<TSource>^>^ Window(
IObservable<TSource>^ source,
TimeSpan timeSpan,
int count
)
static member Window :
source:IObservable<'TSource> *
timeSpan:TimeSpan *
count:int -> IObservable<IObservable<'TSource>>
JScript does not support generic types and methods.
類型參數
- TSource
來源的類型。
參數
- source
類型:System.IObservable< TSource>
要產生視窗的來源序列。
- timeSpan
類型: System.TimeSpan
視窗的時間長度上限。
- count
類型: System.Int32
視窗的最大專案計數。
傳回值
類型:System.IObservable<IObservable< TSource>>
可觀察的視窗序列。
使用注意事項
在 Visual Basic 和 C# 中,您可以在IObservable< TSource > 類型的任何物件上呼叫這個方法作為實例方法。 使用執行個體方法語法呼叫這個方法時,請省略第一個參數。 如需詳細資訊,請參閱 或 。