()
| 138 | } |
| 139 | |
| 140 | get isShutdown(): Effect.Effect<boolean> { |
| 141 | return core.sync(() => MutableRef.get(this.shutdownFlag)) |
| 142 | } |
| 143 | |
| 144 | get awaitShutdown(): Effect.Effect<void> { |
| 145 | return core.deferredAwait(this.shutdownHook) |
no test coverage detected