C# 클래스 EpLibrary.cs.WorkerThreadInfinite

A class that implements infinite-looping Worker Thread Class.
상속: BaseWorkerThread, IDisposable
파일 보기 프로젝트 열기: juhgiyo/EpLibrary.cs 1 사용 예제들

Private Properties

프로퍼티 타입 설명
Dispose void

공개 메소드들

메소드 설명
Dispose ( ) : void
TerminateWorker ( int waitTimeInMilliSec = Timeout.Infinite ) : TerminateResult

Wait for worker thread to terminate, and if not terminated, then Terminate.

WorkerThreadInfinite ( ThreadLifePolicy policy ) : System

Default Constructor

WorkerThreadInfinite ( WorkerThreadInfinite b ) : System

Default copy constructor

보호된 메소드들

메소드 설명
execute ( ) : void

Actual infinite-looping Thread Code.

비공개 메소드들

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

메소드 상세

Dispose() 공개 메소드

public Dispose ( ) : void
리턴 void

TerminateWorker() 공개 메소드

Wait for worker thread to terminate, and if not terminated, then Terminate.
public TerminateWorker ( int waitTimeInMilliSec = Timeout.Infinite ) : TerminateResult
waitTimeInMilliSec int the time-out interval, in milliseconds.
리턴 TerminateResult

WorkerThreadInfinite() 공개 메소드

Default Constructor
public WorkerThreadInfinite ( ThreadLifePolicy policy ) : System
policy ThreadLifePolicy the life policy of this worker thread.
리턴 System

WorkerThreadInfinite() 공개 메소드

Default copy constructor
public WorkerThreadInfinite ( WorkerThreadInfinite b ) : System
b WorkerThreadInfinite the object to copy from
리턴 System

execute() 보호된 메소드

Actual infinite-looping Thread Code.
protected execute ( ) : void
리턴 void