System.Threading.IFuture.Start

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function Start: IFuture<T>;

Properties

Type Visibility Source Unit Parent
function public System.Threading.pas System.Threading IFuture

Description

Starts running the IFuture process.

The Start method indicates the function associated with its instance of IFuture<T> is ready to run in a parallel thread.

At the point in the program where the return value from this function is needed, the property, IFuture<T>.Value would be used as it is prepared to wait for the function running in parallel to finish, if it has not already completed.

See Also