Class TTimer

java.lang.Object
org.teavm.classlib.java.lang.TObject
org.teavm.classlib.java.util.TTimer

public class TTimer extends TObject
  • Constructor Details

    • TTimer

      public TTimer()
    • TTimer

      public TTimer(String name)
    • TTimer

      public TTimer(boolean daemon)
    • TTimer

      public TTimer(String name, boolean daemon)
  • Method Details

    • cancel

      public void cancel()
    • schedule

      public void schedule(TTimerTask task, Date time)
    • schedule

      public void schedule(TTimerTask task, long delay)
    • schedule

      public void schedule(TTimerTask task, Date time, long period)
    • schedule

      public void schedule(TTimerTask task, long delay, long period)
    • scheduleAtFixedRate

      public void scheduleAtFixedRate(TTimerTask task, Date time, long period)
    • scheduleAtFixedRate

      public void scheduleAtFixedRate(TTimerTask task, long delay, long period)