Static methods
staticdelay(f:Float):Void
Suspends the execution of the calling thread for f
seconds. The other program
threads continue to run during this time.
staticjoin(thread:NativeThread):Void
Suspends the execution of the calling thread until the thread thread
has
terminated.
Constructor
Methods
id():Int
Return the identifier of the given thread. A thread identifier is an integer that identifies uniquely the thread. It can be used to build data structures indexed by threads.