Package com.graphaware.tx.event.batch.data

Examples of com.graphaware.tx.event.batch.data.BatchTransactionData


     *
     * @param batchInserter wrapped batch inserter.
     */
    public TransactionSimulatingBatchInserterImpl(BatchInserter batchInserter) {
        this.wrapped = batchInserter;
        this.transactionData = new BatchTransactionData();
    }
View Full Code Here


     * @param batchInserter          wrapped batch inserter.
     * @param commitTxAfterMutations how many mutations it should take before a commit is simulated.
     */
    public TransactionSimulatingBatchInserterImpl(BatchInserter batchInserter, int commitTxAfterMutations) {
        this.wrapped = batchInserter;
        this.transactionData = new BatchTransactionData(commitTxAfterMutations);
    }
View Full Code Here

TOP

Related Classes of com.graphaware.tx.event.batch.data.BatchTransactionData

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.