Function: runParallelNamed()
runParallelNamed<
TProcessors,TOutput>(processors,options?):CallableProcessable<unknown,TOutput>
Defined in: packages/core/src/graph/parallel-merge.ts:232
Same, keyed by name — the merge builds the named object.
Type Parameters
TProcessors
TProcessors extends Record<string, Processable<unknown, unknown>>
TOutput
TOutput = { [K in string | number | symbol]: Awaited<ReturnType<TProcessors[K]["process"]>> }
Parameters
processors
TProcessors
options?
failureMode?
"fail-fast" | "settle"
input?
(data) => unknown
Returns
CallableProcessable<unknown, TOutput>