© 2026 Hedgehog Software, LLC
yield* Effect.all([ reportSomethingSlow([]), // has a span reportSomethingElse([]) ], {concurrency: 2})
const first = yield* reportSomethingSlow([]).pipe(Effect.fork) const second = yield* reportSomethingElse([]).pipe(Effect.fork) yield* Fiber.joinAll([first, second])