Examples of accessRate()


Examples of freenet.node.stats.StoreAccessStats.accessRate()

      }
      row.addChild("td", thousandPoint.format(sessionAccess.writes()) +
          (totalAccess == null ? "" : (" ("+thousandPoint.format(totalAccess.writes())+")")));
      String access = fix1p2.format(sessionAccess.accessRate(nodeUptimeSeconds)) + " /s";
      if(totalAccess != null)
        access += " (" + fix1p2.format(totalAccess.accessRate(totalUptimeSeconds)) + " /s)";
      row.addChild("td", access);
      access = fix1p2.format(sessionAccess.writeRate(nodeUptimeSeconds)) + " /s";
      if(totalAccess != null)
        access += " (" + fix1p2.format(totalAccess.writeRate(totalUptimeSeconds)) + " /s)";
      row.addChild("td", access);
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.