Package freenet.node.updater

Examples of freenet.node.updater.NodeUpdateManager


      // Allow 30 seconds to send the UOM request.
      return false;
    // FIXME remove, paranoia
    if(uptime < HOURS.toMillis(1))
      return false;
    NodeUpdateManager updater = node.nodeUpdater;
    if(updater == null) return true; // Not going to UOM.
    UpdateOverMandatoryManager uom = updater.uom;
    if(uom == null) return true; // Not going to UOM
    if(uptime > HOURS.toMillis(2)) {
      // UOM transfers can take ages, but there has to be some limit...
View Full Code Here

TOP

Related Classes of freenet.node.updater.NodeUpdateManager

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.