public interface DataStoreObserver
ObservableDataStore.| Modifier and Type | Method and Description |
|---|---|
void |
remove(String key)
Method updates an inner state of an instance of this interface
using a provided key of the removed entity.
|
void |
removeAll(Collection<String> keys)
Method updates an inner state of an instance of this interface
using a provided collection of keys of the removed entities.
|
void |
save(Serializable entity)
Method updates an inner state of an instance of this interface
using a provided saved entity.
|
void |
saveAll(Collection<Serializable> entities)
Method updates an inner state of an instance of this interface
using a provided collection of saved entities.
|
void save(Serializable entity)
entity - newly saved entityvoid saveAll(Collection<Serializable> entities)
entities - list of newly saved entitiesvoid remove(String key)
key - removed entityvoid removeAll(Collection<String> keys)
keys - collection of removed entitiesCopyright © 2007-2016, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.