This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Provides a context for managing persistence operations within an EclipseStore environment. | |
* This class encapsulates transaction management (commit/rollback), entity creation with | |
* versioning and logging, and interaction with the underlying storage manager. It extends | |
* {@link LockScope} to ensure thread safety for persistence operations. | |
*/ | |
public final class EclipseStoreContext extends LockScope implements PersistenceStoring { | |
/** |