public class LifecycleTransaction extends Transactional.AbstractTransactional
Modifier and Type | Class and Description |
---|---|
static class |
LifecycleTransaction.ReaderState |
Transactional.AbstractTransactional
Modifier and Type | Method and Description |
---|---|
void |
cancel(java.lang.Iterable<SSTableReader> cancels)
remove the readers from the set we're modifying
|
void |
cancel(SSTableReader cancel)
remove the reader from the set we're modifying
|
void |
checkpoint()
call when a consistent batch of changes is ready to be made atomically visible
these will be exposed in the Tracker atomically, or an exception will be thrown; in this case
the transaction should be rolled back
|
java.lang.Iterable<SSTableReader> |
current()
returns the currently visible readers managed by this transaction
|
SSTableReader |
current(SSTableReader reader)
return the current version of the provided reader, whether or not it is visible or staged;
i.e.
|
java.lang.Throwable |
doAbort(java.lang.Throwable accumulate)
undo all of the changes made by this transaction, resetting the state to its original form
|
java.lang.Throwable |
doCommit(java.lang.Throwable accumulate)
point of no return: commit all changes, but leave all readers marked as compacting
|
protected java.lang.Throwable |
doPostCleanup(java.lang.Throwable accumulate)
perform an exception-safe post-abort cleanup
|
void |
doPrepare()
Do any preparatory work prior to commit.
|
boolean |
isObsolete(SSTableReader reader)
indicates if the reader has been marked for obsoletion
|
boolean |
isOffline() |
void |
obsolete(SSTableReader reader)
mark this reader as for obsoletion.
|
void |
obsoleteOriginals()
obsolete every file in the original transaction
|
static LifecycleTransaction |
offline(OperationType operationType,
java.lang.Iterable<SSTableReader> readers)
construct a Transaction for use in an offline operation
|
static LifecycleTransaction |
offline(OperationType operationType,
SSTableReader reader)
construct a Transaction for use in an offline operation
|
SSTableReader |
onlyOne() |
java.util.Set<SSTableReader> |
originals()
the set of readers guarded by this transaction _in their original instance/state_
call current(SSTableReader) on any reader in this set to get the latest instance
|
void |
permitRedundantTransitions() |
LifecycleTransaction |
split(java.util.Collection<SSTableReader> readers)
remove the provided readers from this Transaction, and return a new Transaction to manage them
only permitted to be called if the current Transaction has never been used
|
LifecycleTransaction.ReaderState |
state(SSTableReader reader) |
java.lang.String |
toString() |
void |
update(SSTableReader reader,
boolean original)
update a reader: if !original, this is a reader that is being introduced by this transaction;
otherwise it must be in the originals() set, i.e.
|
abort, abort, close, commit, commit, doPreCleanup, finish, prepareToCommit, state
public final Tracker tracker
public static LifecycleTransaction offline(OperationType operationType, SSTableReader reader)
public static LifecycleTransaction offline(OperationType operationType, java.lang.Iterable<SSTableReader> readers)
public void doPrepare()
Transactional.AbstractTransactional
doPrepare
in class Transactional.AbstractTransactional
public java.lang.Throwable doCommit(java.lang.Throwable accumulate)
doCommit
in class Transactional.AbstractTransactional
public java.lang.Throwable doAbort(java.lang.Throwable accumulate)
doAbort
in class Transactional.AbstractTransactional
protected java.lang.Throwable doPostCleanup(java.lang.Throwable accumulate)
Transactional.AbstractTransactional
doPostCleanup
in class Transactional.AbstractTransactional
public boolean isOffline()
public void permitRedundantTransitions()
permitRedundantTransitions
in class Transactional.AbstractTransactional
public void checkpoint()
public void update(SSTableReader reader, boolean original)
public void obsolete(SSTableReader reader)
public void obsoleteOriginals()
public java.lang.Iterable<SSTableReader> current()
public java.util.Set<SSTableReader> originals()
public boolean isObsolete(SSTableReader reader)
public SSTableReader current(SSTableReader reader)
public void cancel(SSTableReader cancel)
public void cancel(java.lang.Iterable<SSTableReader> cancels)
public LifecycleTransaction split(java.util.Collection<SSTableReader> readers)
public SSTableReader onlyOne()
public LifecycleTransaction.ReaderState state(SSTableReader reader)
public java.lang.String toString()
toString
in class java.lang.Object
Copyright © 2016 The Apache Software Foundation