Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Typo corrected

...

Code Block
languagexml
titleThe y_join Job Chain
linenumberstrue
collapsetrue
<?xml version="1.0" encoding="ISO-8859-1"?>

<job_chain  title="Y Join">
    <job_chain_node  state="100" job="generate_orders" next_state="wait120" error_state="error"/>
    <job_chain_node  state="150120" job="job_a" next_state="join150" error_state="error" delay="10"/>
    <job_chain_node  state="150" job="job_b" next_state="join" error_state="error"/>
    <job_chain_node  state="wait160" job="waitjob_c" next_state="join" error_state="error" delay="10"/>
    <job_chain_node  state="join" job="join" next_state="200" error_state="error"/>
    <job_chain_node  state="200" job="job_bd" next_state="success" error_state="error"/>
    <job_chain_node  state="success"/>
    <job_chain_node  state="error"/>
</job_chain>

...

Code Block
languagexml
titleThe main_order Order
linenumberstrue
collapsetrue
<?xml version="1.0" encoding="ISO-8859-1"?>
<order >
    <params >
        <param  name="required_orders" value="12"/>
        <param  name="waitduration_job_timea" value="35"/>
        <param  name="generate_orders" value="10"/>
    </params>
    <run_time />
</order>

...