Package edu.brown.hstore.callbacks

Examples of edu.brown.hstore.callbacks.LocalInitQueueCallback


       
        if (ts.isPredictSinglePartition()) {
            this.transactionInit(ts);
        }
        else {
            LocalInitQueueCallback initCallback = (LocalInitQueueCallback)ts.getInitCallback();
            this.hstore_coordinator.transactionInit(ts, initCallback);
        }
    }
View Full Code Here


     * This does not fully initialize this transaction.
     * You must call init() before this can be used
     */
    public LocalTransaction(HStoreSite hstore_site) {
        super(hstore_site);
        this.init_callback = new LocalInitQueueCallback(hstore_site);
        int numPartitions = hstore_site.getCatalogContext().numberOfPartitions;
        this.exec_touchedPartitions = new FastIntHistogram(false, numPartitions);
    }
View Full Code Here

TOP

Related Classes of edu.brown.hstore.callbacks.LocalInitQueueCallback

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.