void |
CommitLogReader.readAllFiles(CommitLogReadHandler handler,
File[] files) |
Reads all passed in files with no minimum, no start, and no mutation limit.
|
void |
CommitLogReader.readAllFiles(CommitLogReadHandler handler,
File[] files,
CommitLogPosition minPosition) |
Reads all passed in files with minPosition, no start, and no mutation limit.
|
void |
CommitLogReader.readCommitLogSegment(CommitLogReadHandler handler,
File file,
boolean tolerateTruncation) |
Reads passed in file fully
|
void |
CommitLogReader.readCommitLogSegment(CommitLogReadHandler handler,
File file,
int mutationLimit,
boolean tolerateTruncation) |
Reads passed in file fully, up to mutationLimit count
|
void |
CommitLogReader.readCommitLogSegment(CommitLogReadHandler handler,
File file,
CommitLogPosition minPosition,
boolean tolerateTruncation) |
Reads all mutations from passed in file from minPosition
|
void |
CommitLogReader.readCommitLogSegment(CommitLogReadHandler handler,
File file,
CommitLogPosition minPosition,
int mutationLimit,
boolean tolerateTruncation) |
Reads mutations from file, handing them off to handler
|
protected void |
CommitLogReader.readMutation(CommitLogReadHandler handler,
byte[] inputBuffer,
int size,
CommitLogPosition minPosition,
int entryLocation,
CommitLogDescriptor desc) |
Deserializes and passes a Mutation to the ICommitLogReadHandler requested
|