There
is a StopWatch class in the Jakarta Commons Lang library. It is
in the
org.apache.commons.lang.time package.
-Richard
-----Original Message-----Thanks.
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Saturday, April 29, 2006 5:56 PM
To: [email protected]
Subject: Re: about Stopwatch
On 4/30/06, Clinton Begin <[EMAIL PROTECTED]> wrote:
Stopwatch isn't supported. Feel free to use it, but don't count on it being there.
Cheers,Clinton
On 4/28/06, 悠云 < [EMAIL PROTECTED]> wrote:Hello,everyone.I have got iBATIS's source code from Subversion.I have a question after I read the source of Stopwatch(com.ibatis.common.util.Stopwatch).In the source , it is:/**
* Start (create) a task
* @param taskName - the name of the task
*/
public void start(String taskName) {
if (log.isDebugEnabled()) {
log.debug("Starting: " + taskName);
}
this.currentTaskName = taskName;
currentTaskTime = System.currentTimeMillis();
}But,when I use this method,the new TaskStat is not created.I think , it should be like this:public void start(String taskName) {
if (log.isDebugEnabled()) {
log.debug("Starting: " + taskName);
}
this.currentTaskName = taskName;
currentTaskTime = System.currentTimeMillis();
appendTaskTime(currentTaskName, currentTaskTime);
}
