Package edu.brown.hstore.callbacks

Examples of edu.brown.hstore.callbacks.TransactionReduceWrapperCallback


            ReduceResult.Builder builder = ReduceResult.newBuilder()
                                                       .setData(reduceOutData)
                                                       .setPartitionId(this.partitionId)
                                                       .setStatus(Status.OK);
          
            TransactionReduceWrapperCallback callback = mr_ts.getTransactionReduceWrapperCallback();
            assert (callback != null) : "Unexpected null TransactionReduceWrapperCallback for " + mr_ts;
            assert (callback.isInitialized()) : "Unexpected uninitalized TransactionReduceWrapperCallback for " + mr_ts;
            callback.run(builder.build());
        }
       
        return (result);
    }
View Full Code Here


       
        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);
       
        this.cleanup_callback = new RemoteFinishCallback(hstore_site);
    }
View Full Code Here

TOP

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

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.