Package edu.brown.hstore.Hstoreservice

Examples of edu.brown.hstore.Hstoreservice.TransactionDebugRequest


                }
                latch.countDown();
            }
        };
       
        TransactionDebugRequest request = TransactionDebugRequest.newBuilder()
                                           .setSenderSite(this.local_site_id)
                                           .setTransactionId(txn_id)
                                           .build();
        for (int site_id = 0; site_id < this.num_sites; site_id++) {
            if (site_id == this.local_site_id) continue;
            this.channels[site_id].transactionDebug(new ProtoRpcController(), request, callback);
            if (trace.val)
                LOG.trace(String.format("Sent %s to %s",
                          request.getClass().getSimpleName(),
                          HStoreThreadManager.formatSiteName(site_id)));
        } // FOR
       
        // Added our own debug info
        AbstractTransaction ts = this.hstore_site.getTransaction(txn_id);
View Full Code Here

TOP

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

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.