(
context: Context.Context<R>,
effect: Effect.Effect<A, E, R>,
parent: Option.Option<Fiber.RuntimeFiber<any, any>>,
fiber: Fiber.RuntimeFiber<A, E>
)
| 40 | } |
| 41 | |
| 42 | onStart<A, E, R>( |
| 43 | context: Context.Context<R>, |
| 44 | effect: Effect.Effect<A, E, R>, |
| 45 | parent: Option.Option<Fiber.RuntimeFiber<any, any>>, |
| 46 | fiber: Fiber.RuntimeFiber<A, E> |
| 47 | ): void { |
| 48 | this.underlying.onStart(context, effect, parent, fiber) |
| 49 | } |
| 50 | |
| 51 | onEnd<A, E>(value: Exit.Exit<A, E>, fiber: Fiber.RuntimeFiber<A, E>): void { |
| 52 | this.underlying.onEnd(value, fiber) |