Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Define a post-processing function spooler_task_after()
  2. Code the switch with your requirements.
  3. Add the job to a job chain. Do this even you only have one job in the chain.

 



XML Configuration of the Job

...

Code Block
 <job_chain>
    <job_chain_node state="100"
                    job="job1"
                    next_state="success"
                    error_state="error"
                    on_error="setback"/>
    <job_chain_node state="success"/>
    <job_chain_node state="error"/>
 </job_chain>

See also

...