Package org.redisson.api.map
Interface MapWriter<K,V>
-
- Type Parameters:
K
- key typeV
- value type
public interface MapWriter<K,V>
Map writer used for write-through operations.- Author:
- Nikita Koksharov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
delete(K key)
void
deleteAll(Collection<K> keys)
void
write(K key, V value)
void
writeAll(Map<K,V> map)
-