Interface PersistentSpace
public interface PersistentSpace
Marker interface for spaces that utilize a persistent store.
Implementations of this interface, such as JDBMSpace and JESpace,
are designed to persist data to a durable storage medium. This ensures that data
can survive application restarts or failures, making it suitable for use cases
requiring long-term storage and reliability.
Being a marker interface, PersistentSpace does not define any additional
methods but serves as a way to identify and group implementations that provide
persistent storage capabilities.
- See Also: