Compartilhar via


IStreamGenerator.TryReadEvents Método

Definição

Sobrecargas

TryReadEvents(DateTime, List<IBatchContainer>)

Tenta obter um evento, se o gerador estiver configurado para gerar qualquer neste momento

TryReadEvents(DateTime, Int32, List<IBatchContainer>)

Tenta obter um evento, se o gerador estiver configurado para gerar qualquer neste momento

TryReadEvents(DateTime, List<IBatchContainer>)

Tenta obter um evento, se o gerador estiver configurado para gerar qualquer neste momento

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

Parâmetros

utcNow
DateTime

Retornos

Aplica-se a

TryReadEvents(DateTime, Int32, List<IBatchContainer>)

Origem:
IStreamGenerator.cs

Tenta obter um evento, se o gerador estiver configurado para gerar qualquer neste momento

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

Parâmetros

utcNow
DateTime

A hora UTC atual.

maxCount
Int32

O número máximo de eventos a serem lidos.

events
List<IBatchContainer>

Os eventos.

Retornos

true se os eventos foram lidos, false caso contrário.

Aplica-se a