System.Net.Socket.TSocket.TSocketAsyncResult.Schedule

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Schedule; override;

C++

virtual void __fastcall Schedule();

Properties

Type Visibility Source Unit Parent
procedure
function
protected
System.Net.Socket.pas
System.Net.Socket.hpp
System.Net.Socket TSocketAsyncResult

Description

Override this method to schedule the asynchronous procedure call in a way that is specific to a given instance, component or class.

System.Net.Socket.TSocket.TSocketAsyncResult.Schedule inherits from System.Classes.TBaseAsyncResult.Schedule. All content below this line refers to System.Classes.TBaseAsyncResult.Schedule. Override this method to schedule the asynchronous procedure call in a way that is specific to a given instance, component or class.

By default, this method schedules the asynchronous call into the main thread or executes the call synchronously if the current thread is the main thread. Descendant classes may schedule the call into a separate thread or thread pool.

See Also