다음을 통해 공유


AndroidApp.WaitFor 메서드

정의

를 반환true할 때까지 함수를 반복적으로 호출하는 predicate 제네릭 대기 함수입니다. TimeoutException 조건자가 시간 제한 내에서 가득 차 있지 않으면 을 throw합니다.

public void WaitFor (Func<bool> predicate, string timeoutMessage = "Timed out waiting...", Nullable<TimeSpan> timeout = null, Nullable<TimeSpan> retryFrequency = null, Nullable<TimeSpan> postTimeout = null);
abstract member WaitFor : Func<bool> * string * Nullable<TimeSpan> * Nullable<TimeSpan> * Nullable<TimeSpan> -> unit
override this.WaitFor : Func<bool> * string * Nullable<TimeSpan> * Nullable<TimeSpan> * Nullable<TimeSpan> -> unit
Public Sub WaitFor (predicate As Func(Of Boolean), Optional timeoutMessage As String = "Timed out waiting...", Optional timeout As Nullable(Of TimeSpan) = null, Optional retryFrequency As Nullable(Of TimeSpan) = null, Optional postTimeout As Nullable(Of TimeSpan) = null)

매개 변수

predicate
Func<Boolean>

대기가 완료되면 반환 true 해야 하는 조건자 함수입니다.

timeoutMessage
String

에 사용되는 메시지입니다 TimeoutException.

timeout
Nullable<TimeSpan>

실패하기 전에 기다릴 입니다 TimeSpan .

retryFrequency
Nullable<TimeSpan>

TimeSpan 조건자를 호출할 때마다 대기할 입니다.

postTimeout
Nullable<TimeSpan>

조건자가 를 반환true한 후 대기할 마지막 TimeSpan 입니다.

구현

적용 대상