TThread.Queue

Queue a method for execution in the main thread

Declaration

Source position: classesh.inc line 1913

protected 
  procedure Queue(aMethod: TThreadMethod);
  class procedure Queue(aThread: TThread; aMethod: TThreadMethod);  Static;

Description

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.

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.

See also

Name Description
TThread.RemoveQueuedEvents Remove methods scheduled for execution from queue
TThread.Synchronize Synchronizes the thread by executing the method in the main thread.

results matching ""

    No results matching ""