I have several authors who need to submit forms defined like so:
        concurrent_iterator :times => '${f:coauthors}', :tag =>
'coauthor_forms', :over_if => '${f:reject}' do
          participant 'co-author-${v:i}', :task => 'submit_forms'
        end

There are a lot of other steps that should happen before these
workitems are needed. So what I want to do is something like this:
    concurrent_iterator :times => '${f:coauthors}', :tag =>
'coauthor_forms' do
      participant 'co-author-${v:i}', :task => 'submit_forms'
      sequence do # From this step on we don't need iteration, just
concurrence
        participant 'corresponding-author', :task => 'submit'
        ...
      end
    end

Is it possible to do other tasks concurrently while waiting for the
concurrent_iterator workitems?

Thanks,
Reed

-- 
you received this message because you are subscribed to the "ruote users" group.
to post : send email to [email protected]
to unsubscribe : send email to [email protected]
more options : http://groups.google.com/group/openwferu-users?hl=en

Reply via email to