Package org.oddjob.jobs
Class SequenceJob
java.lang.Object
org.oddjob.jobs.SequenceJob
- All Implemented Interfaces:
Serializable,Runnable
- Author:
- rob
- See Also:
Description
Provide a sequence number which is incremented each time the job is executed.Example
Using a sequence in a file name.
<oddjob id="this" xmlns:scheduling="http://rgordon.co.uk/oddjob/scheduling" xmlns:schedules="http://rgordon.co.uk/oddjob/schedules">
<job>
<scheduling:timer id="daily">
<schedule>
<schedules:daily/>
</schedule>
<job>
<scheduling:timer>
<schedule>
<schedules:count count="10"/>
</schedule>
<job>
<sequential>
<jobs>
<sequence id="seqnum" watch="${daily.current}"/>
<variables id="vars">
<seqnumFormatted>
<format format="0000" number="${seqnum.current}"/>
</seqnumFormatted>
</variables>
<copy name="Create file" to="${work.dir}/sequence${vars.seqnumFormatted}.txt">
<input>
<value value="This text will be in every file."/>
</input>
</copy>
</jobs>
</sequential>
</job>
</scheduling:timer>
</job>
</scheduling:timer>
</job>
</oddjob>
The watch property is set to watch when the daily scheule move forward
so the sequence is restarted.-
Constructor Details
-
SequenceJob
public SequenceJob()
-
-
Method Details
-
getName
Get the name.- Returns:
- The name.
-
setName
Set the name- Parameters:
name- The name.
-
getCurrent
Get the current sequence number.- Returns:
- The current sequence number.
-
setCurrent
-
setFrom
public void setFrom(int from) -
getFrom
public int getFrom() -
run
public void run() -
setWatch
Set an object to watch.- Parameters:
reset- The reset to set.
-
getWatch
-
toString
-