Examples of ResponderEstimatedLoad


Examples of uk.org.microbase.scheduler.dist.data.ResponderEstimatedLoad

   */
  private void updateResponderLoadLevel()
  {
    int load = queue.size();

    ResponderEstimatedLoad loadEst = new ResponderEstimatedLoad();
    loadEst.setResponderGuid(responderId);
    loadEst.setTimestamp(System.currentTimeMillis());
    loadEst.setNumJobs(load);
    getRuntime().getResponderLoadDao().updateLoad(loadEst);

    logger.log(Level.INFO,
        "Estimated load level for {0} updated: {1}",
        new Object[]{responderId, load});
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.