Oops, I missed change title, sorry...
I repost below with new title.
===================
Hi,
I'm keis...@tokyo, a beginner of Ruby & Workflow engine.
I have looked for a good workflow engine that works with Ruby on
Rails, and finally I found "Ruote", pretty great framework!
Now I am studying "Ruote" whether it will suite my requirements or
not, and I have some questions.
------------------------------------------------------------------------
Q1: Can we change process definition as dynamically?
------------------------------------------------------------------------
For example, I have a process definition as ruby code like below.
#=== sample process definition 1 ===
class PicSelectionProcess < OpenWFE::ProcessDefinition
sequence do
get_pictures
concurrence :merge_type => 'mix' do
user_alice
user_bob
end
end
end
#=== until here ==================
After lunching this process, can user(or owner of proc) change this process
dynamically? like below..
#=== sample process definition 2 ===
class PicSelectionProcess < OpenWFE::ProcessDefinition
sequence do
get_pictures
concurrence :merge_type => 'mix' do
user_alice ## <== now process stopping here!!
user_bob
user_charly ## <== add this participant after lunching!
end
show_pictures ## <== add this participant after lunching!
end
end
#=== until here ==================
------------------------------------------------------------------------
Q2: Can we add new user or change user's group after lunching?
------------------------------------------------------------------------
This point is correspond with Q1.
New user who signed up after lunching a process, can join the
lunched process's participant?
If there are any result docs or web pages like these very simple and
beginner's questions,
Please let me know.
Thanks!
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Ruote (OpenWFEru) users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/openwferu-users?hl=en
-~----------~----~----~----~------~----~------~--~---