System.Classes.TComponent.AsyncSchedule

From RAD Studio API Documentation
Jump to: navigation, search

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.

See Also