Uses of Class
fedora.server.journal.recoverylog.JournalRecoveryLog

Packages that use JournalRecoveryLog
fedora.server.journal   
fedora.server.journal.entry   
fedora.server.journal.readerwriter.multifile   
fedora.server.journal.readerwriter.singlefile   
fedora.server.journal.recoverylog   
 

Uses of JournalRecoveryLog in fedora.server.journal
 

Fields in fedora.server.journal declared as JournalRecoveryLog
protected  JournalRecoveryLog JournalReader.recoveryLog
           
 

Methods in fedora.server.journal with parameters of type JournalRecoveryLog
static JournalReader JournalReader.getInstance(java.util.Map<java.lang.String,java.lang.String> parameters, java.lang.String role, JournalRecoveryLog recoveryLog, ServerInterface server)
          Create an instance of the proper JournalReader child class, as determined by the server parameters.
 

Constructors in fedora.server.journal with parameters of type JournalRecoveryLog
JournalConsumerThread(java.util.Map<java.lang.String,java.lang.String> parameters, java.lang.String role, ServerInterface server, JournalReader reader, JournalRecoveryLog recoveryLog)
          Store references to all of this stuff, but we can't start work without a ManagementDelegate is provided, and we won't get that until the post-initialization stage.
JournalReader(java.util.Map<java.lang.String,java.lang.String> parameters, java.lang.String role, JournalRecoveryLog recoveryLog, ServerInterface server)
          Concrete sub-classes must implement this constructor.
 

Uses of JournalRecoveryLog in fedora.server.journal.entry
 

Methods in fedora.server.journal.entry with parameters of type JournalRecoveryLog
 void ConsumerJournalEntry.invokeMethod(ManagementDelegate delegate, JournalRecoveryLog recoveryLog)
           
 

Uses of JournalRecoveryLog in fedora.server.journal.readerwriter.multifile
 

Constructors in fedora.server.journal.readerwriter.multifile with parameters of type JournalRecoveryLog
LockingFollowingJournalReader(java.util.Map<java.lang.String,java.lang.String> parameters, java.lang.String role, JournalRecoveryLog recoveryLog, ServerInterface server)
          Require parameters for polling interval, lock request filename and lock acceptance filename.
MultiFileFollowingJournalReader(java.util.Map<java.lang.String,java.lang.String> parameters, java.lang.String role, JournalRecoveryLog recoveryLog, ServerInterface server)
          Deprecated. Do the super-class constructor, and then find the polling interval.
MultiFileJournalReader(java.util.Map<java.lang.String,java.lang.String> parameters, java.lang.String role, JournalRecoveryLog recoveryLog, ServerInterface server)
           
 

Uses of JournalRecoveryLog in fedora.server.journal.readerwriter.singlefile
 

Constructors in fedora.server.journal.readerwriter.singlefile with parameters of type JournalRecoveryLog
SingleFileJournalReader(java.util.Map<java.lang.String,java.lang.String> parameters, java.lang.String role, JournalRecoveryLog recoveryLog, ServerInterface server)
          Get the name of the journal file from the server parameters, wrap it in an XMLEventReader, and advance past the document header to the first JournalEntry.
 

Uses of JournalRecoveryLog in fedora.server.journal.recoverylog
 

Subclasses of JournalRecoveryLog in fedora.server.journal.recoverylog
 class BufferedJournalRecoveryLog
          Deprecated. Use RenamingJournalRecoveryLog.
 class RenamingJournalRecoveryLog
          A production-oriented implementation of JournalRecoveryLog.
 class UnbufferedJournalRecoveryLog
          Deprecated. Use RenamingJournalRecoveryLog.
 

Methods in fedora.server.journal.recoverylog that return JournalRecoveryLog
static JournalRecoveryLog JournalRecoveryLog.getInstance(java.util.Map<java.lang.String,java.lang.String> parameters, java.lang.String role, ServerInterface server)
          Create an instance of the proper JournalRecoveryLog child class, as determined by the server parameters.