Package voldemort.store.routed.action

Examples of voldemort.store.routed.action.PerformDeleteHintedHandoff


        Pipeline pipeline = new Pipeline(Operation.DELETE, deleteOpTimeout, TimeUnit.MILLISECONDS);
        pipeline.setEnableHintedHandoff(isHintedHandoffEnabled());

        HintedHandoff hintedHandoff = null;
        PerformDeleteHintedHandoff deleteHintedHandoffAction = null;

        if(isHintedHandoffEnabled()) {
            hintedHandoff = new HintedHandoff(failureDetector,
                                              slopStores,
                                              nonblockingSlopStores,
                                              handoffStrategy,
                                              pipelineData.getFailedNodes(),
                                              deleteOpTimeout);

            deleteHintedHandoffAction = new PerformDeleteHintedHandoff(pipelineData,
                                                                       Event.COMPLETED,
                                                                       key,
                                                                       version,
                                                                       hintedHandoff);
        }
View Full Code Here

TOP

Related Classes of voldemort.store.routed.action.PerformDeleteHintedHandoff

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.