C# 클래스 Nexus.Client.Util.Threading.TrackedThread

A thread that is tracked by the TrackedThreadManager.
파일 보기 프로젝트 열기: NexusMods/NexusModManager-4.5 1 사용 예제들

공개 메소드들

메소드 설명
Start ( ) : void

Starts the thread.

Start ( object p_objParam ) : void

Starts the thread.

TrackedThread ( ParameterizedThreadStart p_ptsThreadMethod ) : System.Threading

Initializes the object with the given values.

TrackedThread ( ThreadStart p_tdsThreadMethod ) : System.Threading

Initializes the object with the given values.

비공개 메소드들

메소드 설명
RunParameterizedThread ( object p_objParam ) : void

Executes the paramterized method from within the thread.

Once the method returns, the thread is removed from the TrackedThreadManager and exits.

RunThread ( ) : void

Executes the non-parameterized method from within the thread.

Once the method returns, the thread is removed from the TrackedThreadManager and exits.

메소드 상세

Start() 공개 메소드

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

Start() 공개 메소드

Starts the thread.
public Start ( object p_objParam ) : void
p_objParam object The parameter to pass to the thread.
리턴 void

TrackedThread() 공개 메소드

Initializes the object with the given values.
public TrackedThread ( ParameterizedThreadStart p_ptsThreadMethod ) : System.Threading
p_ptsThreadMethod ParameterizedThreadStart The method to call when the thread starts.
리턴 System.Threading

TrackedThread() 공개 메소드

Initializes the object with the given values.
public TrackedThread ( ThreadStart p_tdsThreadMethod ) : System.Threading
p_tdsThreadMethod ThreadStart The method to call when the thread starts.
리턴 System.Threading