Package voldemort.client.protocol.pb.VAdminProto

Examples of voldemort.client.protocol.pb.VAdminProto.RebalanceTaskInfoMap


            VAdminProto.RebalanceStateChangeRequest.Builder getRebalanceStateChangeRequestBuilder = VAdminProto.RebalanceStateChangeRequest.newBuilder();

            if(rebalanceTaskPlanList != null) {
                List<RebalanceTaskInfoMap> map = Lists.newArrayList();
                for(RebalanceTaskInfo stealInfo: rebalanceTaskPlanList) {
                    RebalanceTaskInfoMap infoMap = ProtoUtils.encodeRebalanceTaskInfoMap(stealInfo);
                    map.add(infoMap);
                }
                getRebalanceStateChangeRequestBuilder.addAllRebalanceTaskList(map);
            }
View Full Code Here

TOP

Related Classes of voldemort.client.protocol.pb.VAdminProto.RebalanceTaskInfoMap

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.