Minimal cache API used by fory-core.
| 24 | |
| 25 | /** Minimal cache API used by fory-core. */ |
| 26 | public interface Cache<K, V> { |
| 27 | V getIfPresent(K key); |
| 28 | |
| 29 | V get(K key, Callable<? extends V> loader) throws ExecutionException; |
| 30 | |
| 31 | void put(K key, V value); |
| 32 | |
| 33 | void cleanUp(); |
| 34 | } |
no outgoing calls
no test coverage detected