(effect: Effect.Effect<A, E, R>, options?: Effect.RunOptions)
| 345 | return Scope.close(self.scope, Exit.void) |
| 346 | }), |
| 347 | runFork<A, E>(effect: Effect.Effect<A, E, R>, options?: Effect.RunOptions): Fiber.Fiber<A, E | ER> { |
| 348 | return self.cachedContext === undefined ? |
| 349 | Effect.runFork(provide(self, effect), mergeRunOptions(options)) : |
| 350 | Effect.runForkWith(self.cachedContext)(effect, mergeRunOptions(options)) |
| 351 | }, |
| 352 | runCallback<A, E>( |
| 353 | effect: Effect.Effect<A, E, R>, |
| 354 | options?: Effect.RunOptions & { |
no test coverage detected