Read the cached state for storages with specified names and split them by relevance according to the cache TTL.
(storageNames ...string)
| 10 | type Cache interface { |
| 11 | // Read the cached state for storages with specified names and split them by relevance according to the cache TTL. |
| 12 | Read(storageNames ...string) (relevant, outdated AliveMap, err error) |
| 13 | |
| 14 | // ApplyExplicitCheckResult with specifying which checked storages were alive, and return the new cached state for |
| 15 | // all storages with specified names. |
no outgoing calls