Package freenet.node

Examples of freenet.node.NodeStats$RunningRequestsSnapshot


    node.nodeStats.drawNewLoadManagementDelayTimes(content);
  }

  private void drawRejectReasonsBox(HTMLNode nextTableCell, boolean local) {
    HTMLNode rejectReasonsTable = new HTMLNode("table");
    NodeStats stats = node.nodeStats;
    boolean success = local ? stats.getLocalRejectReasonsTable(rejectReasonsTable) :
      stats.getRejectReasonsTable(rejectReasonsTable);
    if(!success)
      return;
    HTMLNode rejectReasonsInfobox = nextTableCell.addChild("div", "class", "infobox");
    rejectReasonsInfobox.addChild("div", "class", "infobox-header", (local ? "Local " : "")+"Preemptive Rejection Reasons");
    rejectReasonsInfobox.addChild("div", "class", "infobox-content").addChild(rejectReasonsTable);
View Full Code Here

TOP

Related Classes of freenet.node.NodeStats$RunningRequestsSnapshot

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.