Examples of FCPPersistentRoot


Examples of freenet.node.fcp.FCPPersistentRoot

    }

    private void migrate(ObjectContainer container) {
        CheckpointLock lock = null;
        boolean success;
        FCPPersistentRoot oldRoot;
        try {
            lock = clientLayerPersister.lock();
            oldRoot = FCPPersistentRoot.load(node.nodeDBHandle, container);
            success = migrateGlobalQueueFromOldDatabase(container, oldRoot);
            System.out.println(success ? "Successfully migrated global queue" : "Tried to migrate global queue, may have lost some requests");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.