<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<body link="#355491" alink="#4262a1" vlink="#355491" style="background: #e2e2e2; margin: 0; padding: 20px;">

<div>
        <table cellpadding="0" bgcolor="#FFFFFF" border="0" cellspacing="0" style="border: 1px solid #dadada; margin-bottom: 30px; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                <tbody>
                        <tr>

                                <td>

                                        <table border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" style="border: solid 2px #ccc; background: #dadada; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                                                <tbody>
                                                        <tr>
                                                                <td bgcolor="#000000" valign="middle" height="58px" style="border-bottom: 1px solid #ccc; padding: 20px; -moz-border-radius-topleft: 3px; -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 5px; -webkit-border-top-left-radius: 5px;">
                                                                        <h1 style="color: #333333; font: bold 22px Arial, Helvetica, sans-serif; margin: 0; display: block !important;">
                                                                        <!-- To have a header image/logo replace the name below with your img tag -->
                                                                        <!-- Email clients will render the images when the message is read so any image -->
                                                                        <!-- must be made available on a public server, so that all recipients can load the image. -->
                                                                        <a href="https://community.jboss.org/index.jspa" style="text-decoration: none; color: #E1E1E1">JBoss Community</a></h1>
                                                                </td>

                                                        </tr>
                                                        <tr>
                                                                <td bgcolor="#FFFFFF" style="font: normal 12px Arial, Helvetica, sans-serif; color:#333333; padding: 20px;  -moz-border-radius-bottomleft: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px;"><h3 style="margin: 10px 0 5px; font-size: 17px; font-weight: normal;">
    Re: jBPM Timer usage
</h3>
<span style="margin-bottom: 10px;">
    created by <a href="https://community.jboss.org/people/saig0">saig0</a> in <i>jBPM</i> - <a href="https://community.jboss.org/message/758317#758317">View the full discussion</a>
</span>
<hr style="margin: 20px 0; border: none; background-color: #dadada; height: 1px;">

<div class="jive-rendered-content"><p>Hi leaf-xue!</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Here is the process with embedded timers. The inner timer fires every 1 second. The boundary timer fires after 5 seconds and end the process. </p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><a href="https://community.jboss.org/servlet/JiveServlet/showImage/2-758317-19430/TimerProcess.png"><span> https://community.jboss.org/servlet/JiveServlet/downloadImage/2-758317-19430/450-264/TimerProcess.png </span></a></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><pre class="jive-pre"><code class="jive-code jive-xml">&#160;&#160; <span class="jive-xml-tag">&lt;process processType="Private" isExecutable="true" id="TimerProcess" name="TimerProcess" tns:packageName="defaultPackage" tns:version="1" &gt;</span>
&#160; 
&#160;&#160;&#160; <span class="jive-xml-comment">&lt;!-- nodes --&gt;
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;startEvent id="_1" name="StartProcess" /&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;subProcess id="_2" name="Sub-Process"&#160; &gt;</span>
&#160;&#160;&#160; &lt;!-- nodes --&gt;
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;startEvent id="_2-1" name="Start" /&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;intermediateCatchEvent id="_2-2" name="Timer" &gt;</span>
&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;timerEventDefinition&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;timeCycle xsi:type="tFormalExpression"&gt;</span>0s###1s<span class="jive-xml-tag">&lt;/timeCycle&gt;</span>
&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;/timerEventDefinition&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;/intermediateCatchEvent&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag"><span>&lt;scriptTask id="_2-3" name="Action" scriptFormat="</span><a class="jive-link-external-small" href="http://www.java.com/java" target="_blank">http://www.java.com/java</a><span>" &gt;</span></span>
&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;script&gt;</span>System.out.println("Action!");<span class="jive-xml-tag">&lt;/script&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;/scriptTask&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;endEvent id="_2-4" name="End" /&gt;</span>
&#160;&#160;&#160; &lt;!-- connections --&gt;
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;sequenceFlow id="_2-1-_2-2" sourceRef="_2-1" targetRef="_2-2" /&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;sequenceFlow id="_2-2-_2-3" sourceRef="_2-2" targetRef="_2-3" /&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;sequenceFlow id="_2-3-_2-4" sourceRef="_2-3" targetRef="_2-4" /&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;/subProcess&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag"><span>&lt;scriptTask id="_3" name="Timeout" scriptFormat="</span><a class="jive-link-external-small" href="http://www.java.com/java" target="_blank">http://www.java.com/java</a><span>" &gt;</span></span>
&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;script&gt;</span>System.out.println("Timeout!");<span class="jive-xml-tag">&lt;/script&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;/scriptTask&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;endEvent id="_4" name="End" &gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;terminateEventDefinition/&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;/endEvent&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;boundaryEvent id="_5" name="Timeout" attachedToRef="_2" &gt;</span>
&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;timerEventDefinition&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;timeDuration xsi:type="tFormalExpression"&gt;</span>5s<span class="jive-xml-tag">&lt;/timeDuration&gt;</span>
&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;/timerEventDefinition&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;/boundaryEvent&gt;</span>
&#160; 
&#160;&#160;&#160; &lt;!-- connections --&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;sequenceFlow id="_1-_2" sourceRef="_1" targetRef="_2" /&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;sequenceFlow id="_5-_3" sourceRef="_5" targetRef="_3" /&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;sequenceFlow id="_3-_4" sourceRef="_3" targetRef="_4" /&gt;</span>
&#160; 
&#160; <span class="jive-xml-tag">&lt;/process&gt;</span>
</code></pre></div>

<div style="background-color: #f4f4f4; padding: 10px; margin-top: 20px;">
    <p style="margin: 0;">Reply to this message by <a href="https://community.jboss.org/message/758317#758317">going to Community</a></p>
        <p style="margin: 0;">Start a new discussion in jBPM at <a href="https://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2034">Community</a></p>
</div></td>
                        </tr>
                    </tbody>
                </table>


                </td>
            </tr>
        </tbody>
    </table>

</div>

</body>
</html>