Package org.redisson.api.map
Interface MapLoader<K,V>
-
- Type Parameters:
K- key typeV- value type
public interface MapLoader<K,V>Map loader used for read-through operations or duringRMap.loadAll(boolean, int)execution.- Author:
- Nikita Koksharov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Vload(K key)Loads map value by key.Iterable<K>loadAllKeys()Loads all keys.
-