Package org.prevayler.implementation.journal

Examples of org.prevayler.implementation.journal.PersistentJournal


  private Journal journal() throws IOException {
    if (_transientMode) {
      return (Journal) new TransientJournal();
    } else {
      PrevaylerDirectory directory = new PrevaylerDirectory(prevalenceDirectory());
      return new PersistentJournal(directory, _journalSizeThreshold, _journalAgeThreshold, _journalDiskSync, journalSuffix(), monitor());
    }
  }
View Full Code Here

TOP

Related Classes of org.prevayler.implementation.journal.PersistentJournal

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.