Populates a cache entry. If the cache entry for given key already exists, the value will be replaced to the new value. @return the previous value associated with key, otherwise null
(K key, V value)
| 29 | * @return the previous value associated with key, otherwise {@code null} |
| 30 | */ |
| 31 | @Nullable |
| 32 | V cache(K key, V value); |
| 33 | |
| 34 | /** |
no outgoing calls