|
|
|
|
ThreadRequestStop (Function) In french: ThreadDemandeArrêt Sends a stop request to a thread. ThreadExecute("T1", threadNormal, ThreadProcedure) ThreadRequestStop ("T1") // Build a thread t is Thread(Proc, ("First parameter", 2)) // Trigger the execution of the thread ThreadExecute(t) ... ThreadRequestStop(t) Syntax
Request the stop of a thread identified by its name Hide the details
ThreadRequestStop(<Thread name>)
<Thread name>: Character string Name of the thread to be stopped. This name is given when running the thread (ThreadExecute).
Request the stop of a thread identified by a Thread variable Hide the details
ThreadRequestStop(<Thread>)
<Thread>: Thread variable Name of the Thread variable that corresponds to the thread to stop. Remarks - The thread will not be stopped automatically. The thread code has to check if the stop is requested using ThreadStopRequested, and terminate properly.
- It is a non-blocking function and does not wait for the thread to stop. You must use ThreadWait to wait for the thread to stop.
Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|