Package org.apache.cassandra.service.AntiEntropyService

Examples of org.apache.cassandra.service.AntiEntropyService.RepairFuture


            return;

        List<AntiEntropyService.RepairFuture> futures = new ArrayList<AntiEntropyService.RepairFuture>();
        for (Range<Token> range : getLocalPrimaryRanges())
        {
            RepairFuture future = forceTableRepair(range, tableName, isSequential, isLocal, columnFamilies);
            if (future != null)
                futures.add(future);
        }
        if (futures.isEmpty())
            return;
View Full Code Here


            return;

        List<AntiEntropyService.RepairFuture> futures = new ArrayList<AntiEntropyService.RepairFuture>();
        for (Range<Token> range : getLocalPrimaryRanges())
        {
            RepairFuture future = forceTableRepair(range, tableName, isSequential, columnFamilies);
            if (future != null)
                futures.add(future);
        }
        if (futures.isEmpty())
            return;
View Full Code Here

TOP

Related Classes of org.apache.cassandra.service.AntiEntropyService.RepairFuture

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.