Skip to content

Instantly share code, notes, and snippets.

View hrstoyanov's full-sized avatar

Hristo I Stoyanov hrstoyanov

View GitHub Profile
/**
* 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 {
/**