|
|
|
|
<Thread>.RequestStop (Function) In french: <Thread>.DemandeArrêt Sends a stop request to a thread. New in version 28// Build a thread t is Thread(Proc, ("First parameter", 2)) // Trigger the execution of the thread ThreadExecute(t) ... t.RequestStop()
Syntax
Request the stop of a thread identified by a Thread variable Hide the details
<Thread>.RequestStop()
<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 <Thread variable>.Wait to wait for the thread to stop.
Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|