Package net.jodah.expiringmap
Interface EntryLoader<K,V>
-
- Type Parameters:
K
- Key typeV
- Value type
public interface EntryLoader<K,V>
Loads entries on demand.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description V
load(K key)
Called to load a new value for thekey
into an expiring map.
-