System.Classes.TComponent.AsyncSchedule
Delphi
procedure AsyncSchedule(const ASyncResult: TBaseAsyncResult); virtual;
C++
virtual void __fastcall AsyncSchedule(TBaseAsyncResult* const ASyncResult);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
procedure function |
protected | System.Classes.pas System.Classes.hpp |
System.Classes | TComponent |
Description
Schedules asynch method calls.
By default, AsyncSchedule uses Queue in order to queue the asynch method call with the main thread.
Override AsyncSchedule in descendant components in order to modify the management of the asynchronous scheduling.