Interface ILissomeStore
- All Superinterfaces:
IStore
,IStore.CanHandleClientAssignedIDs
The main entry point to the API of CDO's proprietary Lissome store.
- Author:
- Eike Stepper
- No Implement
- This interface is not intended to be implemented by clients.
- No Extend
- This interface is not intended to be extended by clients.
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic interface
Contains symbolic constants that specifiy valid keys ofLissome store properties
.Nested classes/interfaces inherited from interface org.eclipse.emf.cdo.server.IStore
IStore.CanHandleClientAssignedIDs, IStore.ChangeFormat, IStore.RevisionParallelism, IStore.RevisionTemporality
-
Method Summary
Modifier and TypeMethodDescriptionReturns a reader that can be used to read from this store in the context of the given session.getWriter
(ITransaction transaction) Returns a writer that can be used to write to this store in the context of the given view.Methods inherited from interface org.eclipse.emf.cdo.server.IStore
createObjectID, getCreationTime, getIndicatingCommitDistributor, getLastBranchID, getLastCommitTime, getLastLocalBranchID, getLastNonLocalCommitTime, getObjectIDTypes, getPersistentProperties, getRepository, getRevisionParallelism, getRevisionTemporality, getSupportedChangeFormats, getSupportedRevisionParallelisms, getSupportedRevisionTemporalities, getType, isFirstStart, removePersistentProperties, setPersistentProperties
-
Method Details
-
getReader
Description copied from interface:IStore
Returns a reader that can be used to read from this store in the context of the given session.- Specified by:
getReader
in interfaceIStore
- Parameters:
session
- The session that should be used as a context for read access ornull
. The store implementor is free to interpret and use the session in a manner suitable for him or ignore it at all. It is meant only as a hint. Implementor can use it as a key into a cache and/or register aLifecycleEventAdapter
with it to intercept cleanup on session close. Note however that the session can benull
, for example during startup of the server while the repositories are initialized but before any user session has been opened.- Returns:
- a reader that can be used to read from this store in the context of the given session, never
null
.
-
getWriter
Description copied from interface:IStore
Returns a writer that can be used to write to this store in the context of the given view. The given view is always marked as a transaction.- Specified by:
getWriter
in interfaceIStore
- Parameters:
transaction
- The view that must be used as a context for write access. The store implementor is free to interpret and use the view in a manner suitable for him or ignore it at all. It is meant only as a hint. Implementor can use it as a key into a cache and/or register aLifecycleEventAdapter
with it to intercept cleanup on view close.- Returns:
- a writer that can be used to write to this store in the context of the given view, never
null
.
-