|
|
|
|
ThreadStopRequested (Function) In french: ThreadArrêtDemandé Checks if a stop request has been sent to the running thread. New in version 28// If a stop request was sent to the thread IF ThreadStopRequested() THEN // Free thread resources ... // End thread ThreadEnd() END Syntax
<Result> = ThreadStopRequested()
<Result>: Boolean - True if a stop request has been sent to the running thread,
- False otherwise.
Remarks - One thread requests another thread to stop via ThreadRequestStop.
- The code of the current thread must check regularly (loops, ... ) if a stop has been requested and end properly if necessary.
Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|