C# 클래스 Esri.ArcGISRuntime.Toolkit.Internal.ThrottleTimer

The throttle timer is useful for limiting the number of requests to a method if the method is repeatedly called many times but you only want the method raised once. It delays raising the method until a set interval, and any previous calls to the actions in that interval will be cancelled.
파일 보기 프로젝트 열기: Esri/arcgis-toolkit-dotnet 1 사용 예제들

공개 메소드들

메소드 설명
Invoke ( ) : void

Invokes this instance (note that this will happen asynchronously and delayed).

비공개 메소드들

메소드 설명
Cancel ( ) : void

Cancels this timer if running.

ThrottleTimer ( int milliseconds ) : System
ThrottleTimer ( int milliseconds, System.Action handler ) : System

Initializes a new instance of the ThrottleTimer class.

메소드 상세

Invoke() 공개 메소드

Invokes this instance (note that this will happen asynchronously and delayed).
public Invoke ( ) : void
리턴 void