()
| 344 | } |
| 345 | |
| 346 | const strategyNoop = <A, E>(): Strategy<A, E> => ({ |
| 347 | run: (_) => core.void, |
| 348 | onAcquire: (_) => core.void, |
| 349 | reclaim: (_) => coreEffect.succeedNone |
| 350 | }) |
| 351 | |
| 352 | const strategyCreationTTL = <A, E>(ttl: Duration.DurationInput) => |
| 353 | defaultServices.clockWith((clock) => |
no outgoing calls
no test coverage detected
searching dependent graphs…