Examples of configureTransactionFiltering()


Examples of org.prevayler.PrevaylerFactory.configureTransactionFiltering()

        PrevaylerFactory factory = new PrevaylerFactory();
        factory.configureClock(this.clock);
        factory.configurePrevalenceBase(this.prevalenceBase);
        factory.configurePrevalentSystem(this.prevalentSystem);
        factory.configureSnapshotManager(this.snapshotManager);
        factory.configureTransactionFiltering(this.transactionFiltering);
        factory.configureTransactionLogFileAgeThreshold(this.transactionLogAgeThreshold);
        factory.configureTransactionLogFileSizeThreshold(this.transactionLogSizeThreshold);
        factory.configureTransientMode(this.transientMode);
        this.prevayler = factory.create();
    }
View Full Code Here

Examples of org.prevayler.PrevaylerFactory.configureTransactionFiltering()

    public PrevaylerFactory getPrevaylerFactory() {
        PrevaylerFactory factory = new PrevaylerFactory();
        factory.configurePrevalentSystem(new PrevalentSystem());
        factory.configurePrevalenceBase(Constants.PREVAYLER_DATA_DIRETORY);
        factory.configureTransactionFiltering(false);
        return factory;
    }

    public Prevayler getPrevaylerServer() throws IOException, ClassNotFoundException {
        logger.info("Instanciando Prevayler Server");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.