Class MemoryStoreRevisions
java.lang.Object
org.apache.jackrabbit.oak.segment.memory.MemoryStoreRevisions
- All Implemented Interfaces:
Revisions
This is a simple in memory
Revisions
implementation.
It is non blocking and does not support any Revisions.Option
s.-
Nested Class Summary
Nested classes/interfaces inherited from interface org.apache.jackrabbit.oak.segment.Revisions
Revisions.Option
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
bind
(MemoryStore store) Bind this instance to astore
.@NotNull RecordId
getHead()
Returns the record id of the head state.@NotNull RecordId
Returns the persisted to disk record id of the head state.setHead
(@NotNull Function<RecordId, RecordId> newHead, @NotNull Revisions.Option... options) Not supported: throwsUnsupportedOperationException
boolean
setHead
(@NotNull RecordId expected, @NotNull RecordId head, @NotNull Revisions.Option... options) Atomically set the record id of the current head state to the givenhead
state if the current head state matches theexpected
value.
-
Constructor Details
-
MemoryStoreRevisions
public MemoryStoreRevisions()
-
-
Method Details
-
bind
Bind this instance to astore
.- Throws:
IOException
-
getHead
Description copied from interface:Revisions
Returns the record id of the head state. The returned id is a valid id for aSegmentNodeState
. -
getPersistedHead
Description copied from interface:Revisions
Returns the persisted to disk record id of the head state. The returned id is a valid id for aSegmentNodeState
.- Specified by:
getPersistedHead
in interfaceRevisions
- Returns:
- id of the head state
-
setHead
public boolean setHead(@NotNull @NotNull RecordId expected, @NotNull @NotNull RecordId head, @NotNull @NotNull Revisions.Option... options) Description copied from interface:Revisions
Atomically set the record id of the current head state to the givenhead
state if the current head state matches theexpected
value.All record ids must be valid ids for
SegmentNodeState
s.The locking behaviour of this method regarding implementation specific.
-
setHead
public RecordId setHead(@NotNull @NotNull Function<RecordId, RecordId> newHead, @NotNull @NotNull Revisions.Option... options) throws InterruptedExceptionNot supported: throwsUnsupportedOperationException
- Specified by:
setHead
in interfaceRevisions
- Parameters:
newHead
- function mapping an record id to the record id to which the current head id should be set.options
- implementation specific options- Returns:
- the record id of the root node if the current head was successfully
updated,
null
otherwise. - Throws:
UnsupportedOperationException
- alwaysInterruptedException
- Blocking implementations may throw this exception whe interrupted.
-