(
effect: Effect.Effect<A, E, R>,
options?: Runtime.RunCallbackOptions<A, E | ER> | undefined
)
| 118 | internalRuntime.unsafeRunPromiseExit(self.cachedRuntime)(effect, options) |
| 119 | }, |
| 120 | runCallback<A, E>( |
| 121 | effect: Effect.Effect<A, E, R>, |
| 122 | options?: Runtime.RunCallbackOptions<A, E | ER> | undefined |
| 123 | ): Runtime.Cancel<A, E | ER> { |
| 124 | return self.cachedRuntime === undefined ? |
| 125 | internalRuntime.unsafeRunCallback(internalRuntime.defaultRuntime)(provide(self, effect), options) : |
| 126 | internalRuntime.unsafeRunCallback(self.cachedRuntime)(effect, options) |
| 127 | }, |
| 128 | runPromise<A, E>(effect: Effect.Effect<A, E, R>, options?: { |
| 129 | readonly signal?: AbortSignal | undefined |
| 130 | }): Promise<A> { |
nothing calls this directly
no test coverage detected
searching dependent graphs…