Package com.linkedin.common.stats

Examples of com.linkedin.common.stats.LongTracking


    //this map is used to store the number of specific errors that happened in one interval only
    private final Map<ErrorType, Integer> _errorTypeCounts;

    private Tracker()
    {
      _callTimeTracking = new LongTracking();
      _errorTypeCounts = new HashMap<ErrorType, Integer>();
      reset();
    }
View Full Code Here

TOP

Related Classes of com.linkedin.common.stats.LongTracking

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.