Class MemoryStoreRevisions
- java.lang.Object
-
- org.apache.jackrabbit.oak.segment.memory.MemoryStoreRevisions
-
- All Implemented Interfaces:
Revisions
public class MemoryStoreRevisions extends Object implements Revisions
This is a simple in memoryRevisions
implementation. It is non blocking and does not support anyRevisions.Option
s.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.jackrabbit.oak.segment.Revisions
Revisions.Option
-
-
Constructor Summary
Constructors Constructor Description MemoryStoreRevisions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
bind(MemoryStore store)
Bind this instance to astore
.@NotNull RecordId
getHead()
Returns the record id of the head state.@NotNull RecordId
getPersistedHead()
Returns the persisted to disk record id of the head state.RecordId
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.
-
-
-
Method Detail
-
bind
public void bind(MemoryStore store) throws IOException
Bind this instance to astore
.- Throws:
IOException
-
getHead
@NotNull public @NotNull RecordId getHead()
Description copied from interface:Revisions
Returns the record id of the head state. The returned id is a valid id for aSegmentNodeState
.
-
getPersistedHead
@NotNull public @NotNull RecordId 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 InterruptedException
Not 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.
-
-