Skip to main content
Corvus Connection

Thread Group

Concurrency
flow.threadPoolOffloads the body to the thread pool (Task.Run) for CPU-bound or blocking work, then resumes at 'completed'. A 'return' inside the body ends the offloaded work only.Run the body on a thread-pool thread, then continue.

Inputs

Name
Kind
Type
Flags
inExecexecmultiplexed

Outputs

Name
Kind
Type
Flags
bodyExecexecNone
completedExecexecNone

Lowers to C#

await Task.Run(async () => { /* body */ }); /* → completed */