Queue a method for execution in the main thread.
Source position: classesh.inc line 2307
protected procedure TThread.Queue( |
aMethod: TThreadMethod |
); |
aThread: TThread; |
aMethod: TThreadMethod |
); |
Queue schedules a method aMethod for execution in the main thread. In difference with TThread.Synchronize, Queue just posts the method for execution in a queue, and does not wait for it to be executed, so this call returns at once.
If the call is made in the main thread, the method is not put on the queue, but is executed at once.
In the class procedure overloaded version of this call, the thread for which the method must be posted is the first argument. In the protected version of this call (used in the tthread instance), this argument is not there, and the thread instance is used.
When a thread object is destroyed (after it has finished executing) all its queued calls are removed from the queue list.
|
Synchronizes the thread by executing the method in the main thread. |
|
|
Remove methods scheduled for execution from queue. |
|
|
Always queue a method for execution in the main thread. |