Click or drag to resize
DigitalRuneParallelStartT Method (FuncT, WorkOptions)
Creates an starts a task which executes the given function and stores the result for later retrieval.

Namespace: DigitalRune.Threading
Assembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax
public static Task<T> Start<T>(
	Func<T> function,
	WorkOptions options
)

Parameters

function
Type: SystemFuncT
The function to execute in parallel.
options
Type: DigitalRune.ThreadingWorkOptions
The work options to use with this action.

Type Parameters

T
The type of result the function returns.

Return Value

Type: TaskT
A TaskT which stores the result of the function.
Exceptions
ExceptionCondition
ArgumentNullExceptionfunction is .
See Also