Package org.apache.pig.tools.timer

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


* @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

Related Classes of org.apache.pig.tools.timer.PerformanceTimer

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.