public class DummyQueueStore extends Object implements QueueStore<Object>
| Constructor and Description |
|---|
DummyQueueStore() |
| Modifier and Type | Method and Description |
|---|---|
void |
delete(Long key)
Deletes the entry with a given key from the store.
|
void |
deleteAll(Collection<Long> keys)
Deletes multiple entries from the store.
|
Object |
load(Long key)
Loads the value of a given key.
|
Map<Long,Object> |
loadAll(Collection<Long> keys)
Loads given keys.
|
Set<Long> |
loadAllKeys()
Loads all of the keys from the store.
|
void |
store(Long key,
Object value)
Stores the key-value pair.
|
void |
storeAll(Map<Long,Object> map)
Stores multiple entries.
|
public void store(Long key, Object value)
QueueStorestore in interface QueueStore<Object>key - key of the entry to storevalue - value of the entry to storepublic void storeAll(Map<Long,Object> map)
QueueStorestoreAll in interface QueueStore<Object>map - map of entries to storepublic void delete(Long key)
QueueStoredelete in interface QueueStore<Object>key - key to delete from the store.public void deleteAll(Collection<Long> keys)
QueueStoredeleteAll in interface QueueStore<Object>keys - keys of the entries to delete.public Object load(Long key)
QueueStoreload in interface QueueStore<Object>public Map<Long,Object> loadAll(Collection<Long> keys)
QueueStoreloadAll in interface QueueStore<Object>keys - keys of the values entries to loadpublic Set<Long> loadAllKeys()
QueueStoreloadAllKeys in interface QueueStore<Object>Copyright © 2021 Hazelcast, Inc.. All rights reserved.