()
| 327 | } |
| 328 | |
| 329 | get invalidateAll(): Effect.Effect<void> { |
| 330 | return fiberRuntime.forEachConcurrentDiscard( |
| 331 | HashSet.fromIterable(Array.from(this.cacheState.map).map(([key]) => key)), |
| 332 | (key) => this.invalidate(key), |
| 333 | false, |
| 334 | false |
| 335 | ) |
| 336 | } |
| 337 | |
| 338 | refresh(key: Key): Effect.Effect<void, Error> { |
| 339 | return pipe( |
nothing calls this directly
no test coverage detected