Package ucar.unidata.util
Interface PersistentStore
- All Known Implementing Classes:
IdvObjectStore
,SerializedObjectStore
,XmlObjectStore
public interface PersistentStore
Abstraction for storing persistent objects.
HashMap-like interface. objects must be persistent across JVM invocations
- Author:
- John Caron
-
Method Summary
-
Method Details
-
get
get the value specified by this key.- Parameters:
key
- the key- Returns:
- the object
-
put
Put the key value pair.- Parameters:
key
- the keyvalue
- the value
-
save
void save()save the current state of the PersistentStore to disk.
-