Returns a view of the entries stored in this cache as a thread-safe map. Modifications made to the map directly affect the cache. <p>Iterators from the returned map are at least <i>weakly consistent</i>: they are safe for concurrent use, but if the cache is modified (including by eviction) after th
()
| 179 | * Guava to fix them until Guava is ready to <i>require</i> Java 8 for all users. |
| 180 | */ |
| 181 | ConcurrentMap<K, V> asMap(); |
| 182 | |
| 183 | /** |
| 184 | * Performs any pending maintenance operations needed by the cache. Exactly which activities are |
no outgoing calls