Hi fmuhlenberg,

 anonymous wrote : What I really want to do when I reach my particular node is 
dynamically append to my existing process instance, then transition along that 
new path until completion.

     Have you tried creating child Tokens from your main process and 
referencing it to the sub process that you will create? To create a child 
token, you can use  

Token t = new Token( mainProcess.getRootToken(), tokenName)
 To reference it from the sub process created, set this token in the 
setSuperProcessToken. You can then signal the parent process from the sub 
process using getSuperProcessToken().signal.   However, if you implement 
multiple sub processes, I guess you have to implement a fork-join in your 
parent process.

Regards,

Elmo

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

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


-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to