Package edu.brown.hstore.callbacks

Examples of edu.brown.hstore.callbacks.RemoteFinishCallback


        //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


     */
    public RemoteTransaction(HStoreSite hstore_site) {
        super(hstore_site);
        this.init_callback = new RemoteInitQueueCallback(hstore_site);
        this.work_callback = new RemoteWorkCallback(hstore_site);
        this.finish_callback = new RemoteFinishCallback(hstore_site);
       
        CatalogContext catalogContext = hstore_site.getCatalogContext();
        this.rpc_transactionPrefetch = new ProtoRpcController[catalogContext.numberOfPartitions];
    }
View Full Code Here

TOP

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

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.