FileDocCategorySizeDatePackage
Timer.javaAPI DocAndroid 1.5 API1099Wed May 06 22:41:56 BST 2009android.net.http

Timer

public class Timer extends Object
{@hide} Debugging tool

Fields Summary
private long
mStart
private long
mLast
Constructors Summary
public Timer()

        mStart = mLast = SystemClock.uptimeMillis();
    
Methods Summary
public voidmark(java.lang.String message)

        long now = SystemClock.uptimeMillis();
        if (HttpLog.LOGV) {
            HttpLog.v(message + " " + (now - mLast) + " total " + (now - mStart));
        }
        mLast = now;