Signature
tsSignature
export function abortChildren(childControllers: AbortController[], reason: unknown): void;Imports
tsImport
import { abortChildren } from "@/lib/flow/core/record";import { abortChildren } from "@/lib/flow";Parameters
childControllersAbortController[]
Controllers to abort.
reasonunknown
Abort reason propagated to each child.
Details
Parent helpers call this when a parallel operation settles and remaining work should stop.
Related Symbols
when
Branches between two behaviors using a predicate function.
function
Source
tsflow/core/record.ts:174-178
export function abortChildren(childControllers: AbortController[], reason: unknown): void { for (const controller of childControllers) { abortController(controller, reason); }}