Package com.mckoi.store
Class JournalledSystem.JournalSummary
- java.lang.Object
-
- com.mckoi.store.JournalledSystem.JournalSummary
-
- Enclosing class:
- JournalledSystem
private static class JournalledSystem.JournalSummary extends java.lang.Object
Summary information about a journal.
-
-
Field Summary
Fields Modifier and Type Field Description (package private) boolean
can_be_recovered
True if the journal is recoverable (has one or more complete check points available).(package private) JournalledSystem.JournalFile
journal_file
The JournalFile object that is a summary of.(package private) long
last_checkpoint
The position of the last checkpoint in the journal.(package private) java.util.ArrayList
resource_list
The list of all resource names that this journal 'touches'.
-
Constructor Summary
Constructors Constructor Description JournalSummary(JournalledSystem.JournalFile journal_file)
Constructor.
-
-
-
Field Detail
-
journal_file
JournalledSystem.JournalFile journal_file
The JournalFile object that is a summary of.
-
can_be_recovered
boolean can_be_recovered
True if the journal is recoverable (has one or more complete check points available).
-
last_checkpoint
long last_checkpoint
The position of the last checkpoint in the journal.
-
resource_list
java.util.ArrayList resource_list
The list of all resource names that this journal 'touches'.
-
-
Constructor Detail
-
JournalSummary
public JournalSummary(JournalledSystem.JournalFile journal_file)
Constructor.
-
-