Package com.thinkaurelius.titan.graphdb.transaction

Examples of com.thinkaurelius.titan.graphdb.transaction.StandardTransactionBuilder


    public FaunusTitanGraph(final Configuration configuration, boolean autoTx) {
        super(new GraphDatabaseConfiguration(configuration));

        //Used to be TranscationConfig(this.getConfiguration, false) indicating that this is not threadBound
        //which is the defaul for Transaction
        this.tx = (autoTx) ? newTransaction(new StandardTransactionBuilder(this.getConfiguration(), this)) : null;
    }
View Full Code Here


        return buildTransaction().start();
    }

    @Override
    public StandardTransactionBuilder buildTransaction() {
        return new StandardTransactionBuilder(getConfiguration(), this);
    }
View Full Code Here

TOP

Related Classes of com.thinkaurelius.titan.graphdb.transaction.StandardTransactionBuilder

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.