Package org.exist.storage.journal

Examples of org.exist.storage.journal.Journal


     */
    public TransactionManager(BrokerPool pool, File dataDir, boolean transactionsEnabled) throws EXistException {
      this.pool = pool;
        enabled = transactionsEnabled;
        if (enabled)
            {journal = new Journal(pool, dataDir);}
        final Boolean groupOpt = (Boolean) pool.getConfiguration().getProperty(PROPERTY_RECOVERY_GROUP_COMMIT);
        if (groupOpt != null) {
            groupCommit = groupOpt.booleanValue();
            if (LOG.isDebugEnabled())
                {LOG.debug("GroupCommits = " + groupCommit);}
View Full Code Here

TOP

Related Classes of org.exist.storage.journal.Journal

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.