Examples of BatchTransactionData


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

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

     * @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
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.