Package edu.brown.hstore.callbacks

Examples of edu.brown.hstore.callbacks.SendDataCallback


        } // FOR

        // The SendDataCallback should invoke the TransactionMapCallback to tell it that
        // the SHUFFLE phase is complete and that we need to send a message back to the
        // transaction's base partition to let it know that the MAP phase is complete
        SendDataCallback sendData_callback = ts.getSendDataCallback();
        sendData_callback.init(ts, new RpcCallback<AbstractTransaction>() {
            @Override
            public void run(AbstractTransaction parameter) {
                ts.getTransactionMapWrapperCallback().runOrigCallback();
            }
        });
View Full Code Here


        this.reduceOutput = new VoltTable[this.partitions_size];
               
        this.map_callback = new TransactionMapCallback(hstore_site);
        this.mapWrapper_callback = new TransactionMapWrapperCallback(hstore_site);
       
        this.sendData_callback = new SendDataCallback(hstore_site);
        //this.sendDataWrapper_callback = new SendDataWrapperCallback(hstore_site);
       
        this.reduce_callback = new TransactionReduceCallback(hstore_site);
        this.reduceWrapper_callback = new TransactionReduceWrapperCallback(hstore_site);
       
View Full Code Here

TOP

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

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.