What you need to think about is separation of processes.  You need to ignore 
the node enter on to your Node(First)  That happened with the previous signal, 
and does not happen in the signal while your token is in 'First'

For example, we have a simple graph, made of 2 simple nodes, A and B.

Currently your token is on A.

You would then signal the token.  Before Signal gets fired.
The signal would cause the token to leave A. Leave Node (for node A) fires
The token would then enter Node B Node Enter (for node B) fires
The token would then be done signalling After Signal

You're going to see node leave/enter for 2 separate nodes across a signal 
event, since that signal causes the transition.

The signal method is just a way to tell the token to move to the next 
node/state/etc on a specific transition).  You have to signal the token (ending 
a task does this as well), for it to move to the next node, which is why you 
have to have a begin signal before you can have a leave node.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953992#3953992

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3953992

Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to