public interface TimerIfc
TimerIfc interface.
| Modifier and Type | Method and Description |
|---|---|
void |
cancel()
cancel.
|
void |
schedule(SchedulerJob job)
schedule.
|
void |
schedule(TimerTask task,
Date time)
schedule.
|
void |
schedule(TimerTask task,
Date firstTime,
long period)
schedule.
|
void |
schedule(TimerTask task,
long delay)
schedule.
|
void |
schedule(TimerTask task,
long delay,
long period)
schedule.
|
void |
scheduleAtFixedRate(TimerTask task,
Date firstTime,
long period)
scheduleAtFixedRate.
|
void |
scheduleAtFixedRate(TimerTask task,
long delay,
long period)
scheduleAtFixedRate.
|
void schedule(SchedulerJob job)
schedule.
job - a SchedulerJob object.void schedule(TimerTask task, long delay)
schedule.
task - a TimerTask object.delay - a long.void schedule(TimerTask task, long delay, long period)
schedule.
task - a TimerTask object.delay - a long.period - a long.void scheduleAtFixedRate(TimerTask task, long delay, long period)
scheduleAtFixedRate.
task - a TimerTask object.delay - a long.period - a long.void scheduleAtFixedRate(TimerTask task, Date firstTime, long period)
scheduleAtFixedRate.
void cancel()
cancel.
Copyright © 2016. All Rights Reserved.