다음을 통해 공유


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>)

Source:
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 그렇지 않으면 입니다.

적용 대상