See: Description
Interface | Description |
---|---|
Loggable |
A class that implements Loggable knows how to read and write itself into
a ByteBuffer in a format suitable for the JE log or JE replication messages.
|
LogSource |
A class that implements LogSource can return portions of the log.
|
Class | Description |
---|---|
CheckpointFileReader |
CheckpointFileReader searches for root and checkpoint entries.
|
CleanerFileReader |
CleanerFileReader scans log files for INs and LNs.
|
DumpFileReader |
The DumpFileReader prints every log entry to stdout.
|
FileHeader |
A FileHeader embodies the header information at the beginning of each log
file.
|
FileManager |
The FileManager presents the abstraction of one contiguous file.
|
FileManager.FileMode | |
FileReader |
A FileReader is an abstract class that traverses the log files, reading in
chunks of the file at a time.
|
INFileReader |
INFileReader supports recovery by scanning log files during the IN rebuild
pass.
|
LastFileReader |
LastFileReader traverses the last log file, doing checksums and looking for
the end of the log.
|
LatchedLogManager |
The LatchedLogManager uses the latches to implement critical sections.
|
LNFileReader |
LNFileReader scans log files for LNs.
|
LogEntryHeader |
A LogEntryHeader embodies the header information at the beginning of each
log entry file.
|
LogEntryType |
LogEntryType is an enumeration of all log entry types.
|
LogManager |
The LogManager supports reading and writing to the JE log.
|
LogUtils |
This class holds convenience methods for marshalling internal JE data to and
from the log.
|
LogUtils.XidImpl | |
PrintFileReader |
The PrintFileReader prints out the target log entries.
|
ScavengerFileReader |
A ScavengerFileReader reads the log backwards.
|
SearchFileReader |
SearchFileReader searches for the a given entry type.
|
StatsFileReader |
The StatsFileReader generates stats about the log entries read, such as the
count of each type of entry, the number of bytes, minimum and maximum sized
log entry.
|
SyncedLogManager |
The SyncedLogManager uses the synchronized keyword to implement protected
regions.
|
TraceLogHandler |
Handler for java.util.logging.
|
UtilizationFileReader |
Summarizes the utilized and unutilized portion of each log file by examining
each log entry.
|
Exception | Description |
---|---|
DbChecksumException |
Configuration related exceptions.
|
LogException |
Configuration related exceptions.
|
LogFileNotFoundException |
Log file doesn't exist.
|