IStreamGenerator.TryReadEvents Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Sobrecargas
TryReadEvents(DateTime, List<IBatchContainer>) |
Intenta obtener un parte, si el generador está configurado para generarlo en este momento. |
TryReadEvents(DateTime, Int32, List<IBatchContainer>) |
Intenta obtener un evento, si el generador está configurado para generarlo en este momento. |
TryReadEvents(DateTime, List<IBatchContainer>)
Intenta obtener un parte, si el generador está configurado para generarlo en este 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
- events
- List<IBatchContainer>
Devoluciones
Se aplica a
TryReadEvents(DateTime, Int32, List<IBatchContainer>)
- Source:
- IStreamGenerator.cs
Intenta obtener un evento, si el generador está configurado para generarlo en este 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
Hora UTC actual.
- maxCount
- Int32
Número máximo de eventos que se van a leer.
- events
- List<IBatchContainer>
Eventos.
Devoluciones
true
si se leyeron eventos; de lo contrario, false
.