ShellBrowser Delphi Components Documentation
ContentsIndexHome
PreviousUpNext
Jam.Threading.TFuture.CreateAndQueue
Syntax
Pascal
class function CreateAndQueue(pFunction: TFunc<TResult>; const pCancellationIndicator: ICancellationIndicator = nil; const pThreadPool: IWorkerThreadPool = nil): IFuture<TResult>; overload;
Parameters 
Description 
pFunction: TFunc<TResult> 
Anonymous function that calculates the result value. 
const pCancellationIndicator: ICancellationIndicator = nil 
Optional ICancellationIndicator that acts as a cancellation token and terminates the asynchronous work. 
const pThreadPool: IWorkerThreadPool = nil 
The thread pool in which the function should be executed. If no thread pool is assigned, the GlobalThreadpool is used. 

A new instance of this class.

Creates an instance of this class and adds it to the global worker pool.