Package edu.brown.hstore.Hstoreservice

Examples of edu.brown.hstore.Hstoreservice.TransactionRedirectRequest


        if (debug.val)
            LOG.debug(String.format("Redirecting transaction request to partition #%d on %s",
                      partition, HStoreThreadManager.formatSiteName(dest_site_id)));
       
        ByteString bs = ByteString.copyFrom(serializedRequest);
        TransactionRedirectRequest mr = TransactionRedirectRequest.newBuilder()
                                        .setSenderSite(this.local_site_id)
                                        .setWork(bs)
                                        .build();
        this.channels[dest_site_id].transactionRedirect(new ProtoRpcController(), mr, callback);
    }
View Full Code Here

TOP

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

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.