Package com.opengamma.util

Examples of com.opengamma.util.PerformanceCounter


   * @param isPerformanceCountingEnabled whether to track the message rate here, see {@link #getNumLiveDataUpdatesSentPerSecondOverLastMinute()}
   */
  protected StandardLiveDataServer(CacheManager cacheManager, boolean isPerformanceCountingEnabled) {
    ArgumentChecker.notNull(cacheManager, "cacheManager");
    _cacheManager = cacheManager;
    _performanceCounter = isPerformanceCountingEnabled ? new PerformanceCounter(60) : null;
  }
View Full Code Here

TOP

Related Classes of com.opengamma.util.PerformanceCounter

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.