Examples of PerformanceTimer


Examples of org.apache.pig.tools.timer.PerformanceTimer

* @param name Name of the timer to return.
* @return the timer.
*/
public PerformanceTimer getTimer(String name)
{
    PerformanceTimer timer = mTimers.get(name);
    if (timer == null) {
        timer = new PerformanceTimer(name);
        mTimers.put(name, timer);
    }
    return timer;
}
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.