public interface PersistentStore
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
get(java.lang.Object key)
get the value specified by this key.
|
void |
put(java.lang.Object key,
java.lang.Object value)
Put the key value pair.
|
void |
save()
save the current state of the PersistentStore to disk.
|
java.lang.Object get(java.lang.Object key)
key
- the keyvoid put(java.lang.Object key, java.lang.Object value)
key
- the keyvalue
- the valuevoid save()