org.apache.turbine.modules
Class ScheduledJob

java.lang.Object
  |
  +--org.apache.turbine.modules.Assembler
        |
        +--org.apache.turbine.modules.ScheduledJob

public abstract class ScheduledJob
extends Assembler

All Scheduled jobs should extend this. The class that extends ScheduledJobs should contain the code that you actually want to execute at a specific time. The name of this class is what you register in the JobEntry.

Version:
$Id$
Author:
Dave Bryson

Constructor Summary
ScheduledJob()
           
 
Method Summary
abstract  void run(JobEntry job)
          Run the Jobentry from the scheduler queue.
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Constructor Detail

ScheduledJob

public ScheduledJob()
Method Detail

run

public abstract void run(JobEntry job)
                  throws java.lang.Exception
Run the Jobentry from the scheduler queue.
Parameters:
job - The job to run.


Copyright © 1999-2001 Apache Software Foundation. All Rights Reserved.