Arch Sub-System: Threading - Thread

01 This class provides the same functions as the Lib Thread variant.
02

[C++] class Thread
[C#] class Thread: IDisposable

03

Public Methods

TypeNameDescription
Constructor() Creates a Thread object.
[C++] Destructor() Stops and destroys the thread.
void[C#] Dispose() Stops and destroys the thread.
voidStart() Starts the thread.
voidStop() Stops the thread.
bool[C++] ShouldRun() Returns live status.
uint32GetCurrentThreadId() Returns the native thread Id of the calling thread.
void[C++] SleepMSec() Sleeps the calling thread.
04 Although .net provides a Thread object, the exact behaviour like the C++ variant (which is in turned based on the Semys Lib implementation) needed to be recreated.
05 Reference: net::semys
Implementation: Semys Architecture
See Also: Arch Threading Sub-System

Goto: Main Page; This page is part of the Semys software documentation. See About: Documentation for details.