Package org.voltdb

Examples of org.voltdb.PostSnapshotTask


    private static void createUpdatePartitionCountTasksForSites(Collection<Integer> localPartitions,
                                                                Integer newPartitionCount)
    {
        Preconditions.checkNotNull(newPartitionCount);
        PostSnapshotTask task = new UpdatePartitionCount(newPartitionCount);
        assert !localPartitions.isEmpty();
        Iterator<Integer> iter = localPartitions.iterator();
        while (iter.hasNext()) {
            int partition = iter.next();
            SnapshotSiteProcessor.m_siteTasksPostSnapshotting.put(partition, task);
View Full Code Here

TOP

Related Classes of org.voltdb.PostSnapshotTask

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.