Package ariba.util.core.PerformanceState

Examples of ariba.util.core.PerformanceState.Stats


            }

            EventDetail ev = (EventDetail)_statsByType.get(type);
            if (ev == null) {
                // create a new EventDetail if one does not exist
                Stats stats = PerformanceState.getThisThreadHashtable();
                PerformanceCheck check = stats._performanceCheck;
                long[] levels = check == null ?
                    null : check.getThresholds(_name, type);
                long stackTraceThreshold = levels == null ? 0 : levels[1];
                ev = new EventDetail(type, stackTraceThreshold);
View Full Code Here

TOP

Related Classes of ariba.util.core.PerformanceState.Stats

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.