( key: MapKey<Key>, exit: Exit.Exit<Value, Error>, entryStats: Cache.EntryStats, timeToLiveMillis: number )
| 59 | |
| 60 | /** @internal */ |
| 61 | export const complete = <Key, Value, Error>( |
| 62 | key: MapKey<Key>, |
| 63 | exit: Exit.Exit<Value, Error>, |
| 64 | entryStats: Cache.EntryStats, |
| 65 | timeToLiveMillis: number |
| 66 | ): MapValue<Key, Value, Error> => |
| 67 | Data.struct({ |
| 68 | _tag: "Complete" as const, |
| 69 | key, |
| 70 | exit, |
| 71 | entryStats, |
| 72 | timeToLiveMillis |
| 73 | }) |
| 74 | |
| 75 | /** @internal */ |
| 76 | export const pending = <Key, Value, Error>( |
no outgoing calls
no test coverage detected