Package: effect
Module: Effect
Waits for all child fibers forked by this effect to complete before this effect completes.
When to use
Use to let an effect start child work concurrently while still delaying its own completion until that child work is done.
Gotchas
Child fibers that already exist before the wrapped effect starts are not awaited.
See
forkChild for forking child fibers that are awaited by this operatorforkDetach for forking fibers outside the child scopeforkIn for forking into an explicit scopeforkScoped for forking fibers tied to the current scopeSignature
declare const awaitAllChildren: <A, E, R>(self: Effect<A, E, R>) => Effect<A, E, R>
Since v2.0.0