Package edu.brown.hstore.Hstoreservice

Examples of edu.brown.hstore.Hstoreservice.TransactionReduceRequest


     * @param ts
     */
    public void transactionReduce(LocalTransaction ts, RpcCallback<TransactionReduceResponse> callback) {
        // We only need to send over the transaction. The remote side should
        // already have all the information that it needs about this txn
        TransactionReduceRequest request = TransactionReduceRequest.newBuilder()
                                                     .setTransactionId(ts.getTransactionId())
                                                     .build();
       
        PartitionSet partitions = ts.getPredictTouchedPartitions();
        if (debug.val) {
View Full Code Here

TOP

Related Classes of edu.brown.hstore.Hstoreservice.TransactionReduceRequest

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.