com.arsdigita.acs
Class ScheduledProcedure
java.lang.Object
|
+--com.arsdigita.acs.ScheduledProcedure
- All Implemented Interfaces:
- Runnable
- abstract class ScheduledProcedure
- extends Object
- implements Runnable
Utility class for associating a record with a Runnable object
Typical usage is similar to Thread:
ScheduledProcedure sp = new ScheduledProcedure() {
public void run() {
// do something
}
};
- See Also:
Scheduler
Methods inherited from class java.lang.Object |
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface java.lang.Runnable |
run |
recurring
boolean recurring
initialDelay
long initialDelay
period
long period
nextTime
long nextTime
id
int id
ScheduledProcedure
ScheduledProcedure()