Java Timer Usage startTimerWithDelayInMillis(TimerTask task, long millisToDelay, long intervalInMillis)

Here you can find the source of startTimerWithDelayInMillis(TimerTask task, long millisToDelay, long intervalInMillis)

Description

start Timer With Delay In Millis

License

Open Source License

Declaration

public static void startTimerWithDelayInMillis(TimerTask task,
            long millisToDelay, long intervalInMillis) 

Method Source Code

//package com.java2s;
/*//  w ww. j a v a  2s. com

 The Martus(tm) free, social justice documentation and
 monitoring software. Copyright (C) 2001-2007, Beneficent
 Technology, Inc. (The Benetech Initiative).

 Martus is free software; you can redistribute it and/or
 modify it under the terms of the GNU General Public License
 as published by the Free Software Foundation; either
 version 2 of the License, or (at your option) any later
 version with the additions and exceptions described in the
 accompanying Martus license file entitled "license.txt".

 It is distributed WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 IMPLIED, including warranties of fitness of purpose or
 merchantability.  See the accompanying Martus License and
 GPL license for more details on the required license terms
 for this software.

 You should have received a copy of the GNU General Public
 License along with this program; if not, write to the Free
 Software Foundation, Inc., 59 Temple Place - Suite 330,
 Boston, MA 02111-1307, USA.

 */

import java.util.Timer;
import java.util.TimerTask;

public class Main {
    public static void startTimerWithDelayInMillis(TimerTask task,
            long millisToDelay, long intervalInMillis) {
        Timer timer = new Timer(true);
        timer.schedule(task, millisToDelay, intervalInMillis);
    }
}

Related

  1. mayNewTasksBeScheduled(Timer timer)
  2. printLoadToConsole(int milliOffset)
  3. runRotateKeys()
  4. schedule(final TimerTask task, final int delay, final int period)
  5. schedule(TimerTask task, long delay, long period, String name)
  6. stop(final TimerTask task)
  7. stopPrintStackTraces()
  8. timerTask(Runnable runnable)