C# 클래스 HermaFx.Utils.BackoffWaiter

I can help you wait, especially if you want to wait e.g. for some kind of increasing amount of time.
파일 보기 프로젝트 열기: evicertia/HermaFx

공개 메소드들

메소드 설명
BackoffWaiter ( ) : System
Reset ( ) : void

Resets the backoff helper which means that waiting will start over from the beginning of the sequence of wait times

Wait ( ) : void

Waits the time specified next in the sequence

Wait ( Action howLongTheWaitWillLast ) : void

Waits the time specified next in the sequence, invoking the callback with the time that will be waited

메소드 상세

BackoffWaiter() 공개 메소드

public BackoffWaiter ( ) : System
리턴 System

Reset() 공개 메소드

Resets the backoff helper which means that waiting will start over from the beginning of the sequence of wait times
public Reset ( ) : void
리턴 void

Wait() 공개 메소드

Waits the time specified next in the sequence
public Wait ( ) : void
리턴 void

Wait() 공개 메소드

Waits the time specified next in the sequence, invoking the callback with the time that will be waited
public Wait ( Action howLongTheWaitWillLast ) : void
howLongTheWaitWillLast Action
리턴 void