共用方式為


IStreamGenerator.TryReadEvents 方法

定義

多載

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

傳回

適用於

TryReadEvents(DateTime, Int32, List<IBatchContainer>)

來源:
IStreamGenerator.cs

如果產生器設定為此時產生任何事件,則嘗試取得事件

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 否則為 。

適用於