C# 클래스 OpenNos.Core.Threading.Timer

This class is a timer that performs some tasks periodically.
상속: IDisposable
파일 보기 프로젝트 열기: OpenNos/OpenNos 1 사용 예제들

공개 메소드들

메소드 설명
Dispose ( ) : void
Start ( ) : void

Starts the timer.

Stop ( ) : void

Stops the timer.

Timer ( int period ) : System

Creates a new Timer.

Timer ( int period, bool runOnStart ) : System

Creates a new Timer.

WaitToStop ( ) : void

Waits the service to stop.

보호된 메소드들

메소드 설명
Dispose ( bool disposing ) : void

비공개 메소드들

메소드 설명
TimerCallBack ( object state ) : void

This method is called by _taskTimer.

메소드 상세

Dispose() 공개 메소드

public Dispose ( ) : void
리턴 void

Dispose() 보호된 메소드

protected Dispose ( bool disposing ) : void
disposing bool
리턴 void

Start() 공개 메소드

Starts the timer.
public Start ( ) : void
리턴 void

Stop() 공개 메소드

Stops the timer.
public Stop ( ) : void
리턴 void

Timer() 공개 메소드

Creates a new Timer.
public Timer ( int period ) : System
period int Task period of timer (as milliseconds)
리턴 System

Timer() 공개 메소드

Creates a new Timer.
public Timer ( int period, bool runOnStart ) : System
period int Task period of timer (as milliseconds)
runOnStart bool /// Indicates whether timer raises Elapsed event on Start method of Timer for once ///
리턴 System

WaitToStop() 공개 메소드

Waits the service to stop.
public WaitToStop ( ) : void
리턴 void