isThreadAlive
Tests if this thread is alive.
A thread is alive if it has been started and has not yet terminated.
Example:
if ( isThreadAlive( "myThread " ) ) {
// wiat
}
Method Signature
isThreadAlive(name=[string])
Arguments
Argument
Type
Required
Description
Default
name
string
true
The name of the thread to check
Examples
Related
Last updated
Was this helpful?