All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.asteriskjava.pbx.util.LogTime Maven / Gradle / Ivy

There is a newer version: 3.40.1
Show newest version
/*
 * Created on 2/03/2005
 *
 */
package org.asteriskjava.pbx.util;

/**
 * @author work shop
 */
public class LogTime
{
    public Long dStartTime = System.currentTimeMillis();

    public long timeTaken()
    {
        // returns the time taken from construction til now in milliseconds
        // Date dStartTime = new Date();

        return System.currentTimeMillis() - this.dStartTime;

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy