| ParallelStartBackground Method (IWork) |
Starts a task in a secondary worker thread. Intended for long running, blocking work such as
I/O.
Namespace: DigitalRune.ThreadingAssembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax public static Task StartBackground(
IWork work
)
Public Shared Function StartBackground (
work As IWork
) As Task
public:
static Task StartBackground(
IWork^ work
)
static member StartBackground :
work : IWork -> Task
Parameters
- work
- Type: DigitalRune.ThreadingIWork
The work to execute.
Return Value
Type:
TaskA task which represents the asynchronous operation.
Exceptions See Also