IStreamGenerator.TryReadEvents 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
TryReadEvents(DateTime, List<IBatchContainer>) |
如果產生器設定為此時產生任何事件,則嘗試取得事件 |
TryReadEvents(DateTime, Int32, List<IBatchContainer>) |
如果產生器設定為此時產生任何事件,則嘗試取得事件 |
TryReadEvents(DateTime, List<IBatchContainer>)
如果產生器設定為此時產生任何事件,則嘗試取得事件
public bool TryReadEvents (DateTime utcNow, out System.Collections.Generic.List<Orleans.Streams.IBatchContainer> events);
abstract member TryReadEvents : DateTime * List -> bool
Public Function TryReadEvents (utcNow As DateTime, ByRef events As List(Of IBatchContainer)) As Boolean
參數
- utcNow
- DateTime
- events
- List<IBatchContainer>
傳回
適用於
TryReadEvents(DateTime, Int32, List<IBatchContainer>)
如果產生器設定為此時產生任何事件,則嘗試取得事件
public bool TryReadEvents (DateTime utcNow, int maxCount, out System.Collections.Generic.List<Orleans.Streams.IBatchContainer> events);
abstract member TryReadEvents : DateTime * int * List -> bool
Public Function TryReadEvents (utcNow As DateTime, maxCount As Integer, ByRef events As List(Of IBatchContainer)) As Boolean
參數
- utcNow
- DateTime
目前的 UTC 時間。
- maxCount
- Int32
要讀取的事件數目上限。
- events
- List<IBatchContainer>
事件。
傳回
true
如果已讀取事件,則為 , false
否則為 。