(exit: Exit.Exit<A, E>)
| 451 | get await(): Effect.Effect<Exit.Exit<A, E>> { |
| 452 | return core.async((resume) => { |
| 453 | const cb = (exit: Exit.Exit<A, E>) => resume(core.succeed(exit)) |
| 454 | if (this._exitValue !== null) { |
| 455 | cb(this._exitValue!) |
| 456 | return |