|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.hazelcast.map.impl.MapStoreWrapper
public class MapStoreWrapper
Constructor Summary | |
---|---|
MapStoreWrapper(String mapName,
Object impl)
|
Method Summary | |
---|---|
void |
delete(Object key)
Deletes the entry with a given key from the store. |
void |
deleteAll(Collection keys)
Deletes multiple entries from the store. |
void |
destroy()
Hazelcast will call this method before shutting down. |
Object |
getImpl()
|
MapStore |
getMapStore()
|
void |
init(HazelcastInstance hazelcastInstance,
Properties properties,
String mapName)
Initializes this MapLoader implementation. |
boolean |
isPostProcessingMapStore()
|
Object |
load(Object key)
Loads the value of a given key. |
Map |
loadAll(Collection keys)
Loads given keys. |
Set |
loadAllKeys()
Loads all of the keys from the store. |
void |
store(Object key,
Object value)
Stores the key-value pair. |
void |
storeAll(Map map)
Stores multiple entries. |
String |
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public MapStoreWrapper(String mapName, Object impl)
Method Detail |
---|
public MapStore getMapStore()
public void destroy()
MapLoaderLifecycleSupport
destroy
in interface MapLoaderLifecycleSupport
public void init(HazelcastInstance hazelcastInstance, Properties properties, String mapName)
MapLoaderLifecycleSupport
init
in interface MapLoaderLifecycleSupport
hazelcastInstance
- HazelcastInstance of this mapLoader.properties
- Properties set for this mapStore. see MapStoreConfigmapName
- name of the map.public void delete(Object key)
MapStore
delete
in interface MapStore
key
- the key to delete from the store.public void store(Object key, Object value)
MapStore
store
in interface MapStore
key
- key of the entry to storevalue
- value of the entry to storepublic void storeAll(Map map)
MapStore
storeAll
in interface MapStore
map
- map of entries to storepublic void deleteAll(Collection keys)
MapStore
deleteAll
in interface MapStore
keys
- the keys of the entries to delete.public Set loadAllKeys()
MapLoader
loadAllKeys
in interface MapLoader
public Object load(Object key)
MapLoader
load
in interface MapLoader
public Map loadAll(Collection keys)
MapLoader
loadAll
in interface MapLoader
keys
- keys of the values entries to load
public Object getImpl()
public boolean isPostProcessingMapStore()
public String toString()
toString
in class Object
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |