(input: I)
| 169 | return Effect.cacheRequestResult(makeRequest(tag, input, null as any, null as any), Exit.succeed(value)) |
| 170 | }, |
| 171 | cacheInvalidate(input: I) { |
| 172 | return Effect.withFiberRuntime<void>((fiber) => { |
| 173 | const cache = fiber.getFiberRef(FiberRef.currentRequestCache) |
| 174 | return cache.invalidate(makeRequest(tag, input, null as any, null as any)) |
| 175 | }) |
| 176 | }, |
| 177 | makeExecute, |
| 178 | execute: makeExecute(self) |
| 179 | }) |
nothing calls this directly
no test coverage detected
searching dependent graphs…