Examples of LatencyParam


Examples of recommender.core.database.params.LatencyParam

  @Override
  public Long getAverageLatencyForRecommender(Long sid, Long numberOfQueries) {
    if (numberOfQueries.longValue() <= 0) {
      return null;
    }
    final LatencyParam param = new LatencyParam(sid, numberOfQueries);
    return this.manager.processQueryForObject(Long.class, "getAverageRecommenderLatencyForSettingID", param);
  }
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.