Header menu logo IcedTasks

ParallelAsync Type

Contains different implementations for parallel zip functions.

Static members

Static member Description

ParallelAsync.zipUsingStartImmediateAsTask a1 a2

Full Usage: ParallelAsync.zipUsingStartImmediateAsTask a1 a2

Parameters:
    a1 : Async<'left> - An async to execute
    a2 : Async<'right> - An async to execute

Returns: Async<'left * 'right> Tuple of computed values
Modifiers: inline
Type parameters: 'left, 'right

Executes two asyncs concurrently using FSharpAsync.StartImmediateAsTask and returns a tuple of the values

a1 : Async<'left>

An async to execute

a2 : Async<'right>

An async to execute

Returns: Async<'left * 'right>

Tuple of computed values

ParallelAsync.zipWithStartChild a1 a2

Full Usage: ParallelAsync.zipWithStartChild a1 a2

Parameters:
    a1 : Async<'left> - An async to execute
    a2 : Async<'right> - An async to execute

Returns: Async<'left * 'right> Tuple of computed values

Executes two asyncs concurrently FSharpAsync.StartChild and returns a tuple of the values using

a1 : Async<'left>

An async to execute

a2 : Async<'right>

An async to execute

Returns: Async<'left * 'right>

Tuple of computed values

Type something to start searching.