Thread.Suspend
From Xojo Documentation
This item was deprecated in version 2019r2. Please use Thread.Pause as a replacement. |
Method
Puts the thread in a suspended state. Every call to Suspend must be matched by a call to Resume.
Notes
The thread will not be allocated any processing cycles, regardless of its assigned Priority. It is “asleep.” To wake it up, call the Resume method. If the thread is executing when you call Suspend, it will immediately cause a context switch.
Example
This example calls Suspend, followed by a call to Resume after other code has executed.
LongProcessThread1.Suspend
// do something else here...
LongProcessThread1.Resume
// do something else here...
LongProcessThread1.Resume