| Constructor and Description | 
|---|
MapStoreAdapter()  | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
delete(K key)
Deletes the entry with a given key from the store. 
 | 
void | 
deleteAll(Collection<K> keys)
Deletes multiple entries from the store. 
 | 
V | 
load(K key)
Loads the value of a given key. 
 | 
Map<K,V> | 
loadAll(Collection<K> keys)
Loads given keys. 
 | 
Set<K> | 
loadAllKeys()
Loads all of the keys from the store. 
 | 
void | 
store(K key,
     V value)
Stores the key-value pair. 
 | 
void | 
storeAll(Map<K,V> map)
Stores multiple entries. 
 | 
public void delete(K key)
public void store(K key, V value)
public void storeAll(Map<K,V> map)
public void deleteAll(Collection<K> keys)
public V load(K key)
public Map<K,V> loadAll(Collection<K> keys)
Copyright © 2014 Hazelcast, Inc.. All Rights Reserved.