public class CdcrTransactionLog extends TransactionLog
TransactionLog
to:
incref()
, close()
and reopenOutputStream()
.writeCommit(CommitUpdateCommand, int)
and getReader(long)
.Modifier and Type | Class and Description |
---|---|
class |
CdcrTransactionLog.CdcrLogReader |
TransactionLog.FSReverseReader, TransactionLog.LogCodec, TransactionLog.LogReader, TransactionLog.ReverseReader
deleteOnClose, END_MESSAGE
Modifier and Type | Method and Description |
---|---|
void |
close() |
TransactionLog.LogReader |
getReader(long startingPos)
Returns a reader that can be used while a log is still in use.
|
void |
incref() |
int |
numRecords()
Returns the number of records in the log (currently includes the header and an optional commit).
|
boolean |
try_incref()
Modified to act like
incref() in order to be compatible with UpdateLog.recoverFromLog() . |
long |
writeCommit(CommitUpdateCommand cmd,
int flags) |
addGlobalStrings, closeOutput, decref, endRecord, endsWithCommit, finish, forceClose, getLogSize, getReverseReader, lookup, position, rollback, snapshot, toString, write, write, writeData, writeDelete, writeDeleteByQuery, writeLogHeader
public int numRecords()
numRecords
in class TransactionLog
public long writeCommit(CommitUpdateCommand cmd, int flags)
writeCommit
in class TransactionLog
public TransactionLog.LogReader getReader(long startingPos)
getReader
in class TransactionLog
public void incref()
incref
in class TransactionLog
public boolean try_incref()
incref()
in order to be compatible with UpdateLog.recoverFromLog()
.
Otherwise, we would have to duplicate the method UpdateLog.recoverFromLog()
in
CdcrUpdateLog
and change the call
if (!ll.try_incref()) continue;
to incref();
.try_incref
in class TransactionLog
public void close()
close
in interface Closeable
close
in interface AutoCloseable
close
in class TransactionLog
Copyright © 2000-2017 Apache Software Foundation. All Rights Reserved.