Package com.sun.enterprise.util

Examples of com.sun.enterprise.util.ApproximateClock


    private PeriodicEventScheduler()
    {
        super();
        bRun = true;
        sortedList = new TimedTaskList();
        clock = new ApproximateClock (delay_time_approx);
        counter = getTime();
        _thread = new Thread (this, "PeriodicEventScheduler");
    _thread.setDaemon(true);
    _thread.start();
    }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.util.ApproximateClock

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.