Examples of WaitingForSlots


Examples of freenet.node.RequestTracker.WaitingForSlots

        fs.put("fatalTimeoutsRemote",fatalTimeoutsInWaitRemote);
        fs.put("allocatedSlotLocal",allocatedSlotLocal);
        fs.put("allocatedSlotRemote",allocatedSlotRemote);
    }

    WaitingForSlots waitingSlots = tracker.countRequestsWaitingForSlots();
    fs.put("RequestsWaitingSlotsLocal", waitingSlots.local);
    fs.put("RequestsWaitingSlotsRemote", waitingSlots.remote);

    fs.put("successfulLocalCHKFetchTimeBulk", successfulLocalCHKFetchTimeAverageBulk.currentValue());
    fs.put("successfulLocalCHKFetchTimeRT", successfulLocalCHKFetchTimeAverageRT.currentValue());
View Full Code Here

Examples of freenet.node.RequestTracker.WaitingForSlots

    if(logMINOR) Logger.minor(this, "Delay times: realtime: local="+nlmDelayRTLocal.currentValue()+" remote = "+nlmDelayRTRemote.currentValue()+
        " bulk: local="+nlmDelayBulkLocal.currentValue()+" remote="+nlmDelayBulkRemote.currentValue());
  }

  public void drawNewLoadManagementDelayTimes(HTMLNode content) {
    WaitingForSlots waitingSlots = node.tracker.countRequestsWaitingForSlots();
    content.addChild("p").addChild("#", l10n("slotsWaiting", new String[] { "local", "remote" }, new String[] { Integer.toString(waitingSlots.local), Integer.toString(waitingSlots.remote) }));
    HTMLNode table = content.addChild("table", "border", "0");
    HTMLNode header = table.addChild("tr");
    header.addChild("th", l10n("delayTimes"));
    header.addChild("th", l10n("localHeader"));
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.