You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ode.apache.org by "Tammo van Lessen (JIRA)" <ji...@apache.org> on 2010/04/13 14:29:27 UTC

[jira] Updated: (ODE-434) Support the rendezvous case for two receives with createInstance="yes"

     [ https://issues.apache.org/jira/browse/ODE-434?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tammo van Lessen updated ODE-434:
---------------------------------

    Fix Version/s: 1.3.5

> Support the rendezvous case for two receives with createInstance="yes"
> ----------------------------------------------------------------------
>
>                 Key: ODE-434
>                 URL: https://issues.apache.org/jira/browse/ODE-434
>             Project: ODE
>          Issue Type: Improvement
>          Components: BPEL Runtime
>            Reporter: Sean Ahn
>             Fix For: 1.3.5
>
>
> To achieve this, we need to implement the dependencies between:
> an instance creating receive/its waiting jacob runnable, and the rest of receive runnables that are in the same flow
> <flow>
>    <links>
>       <link name="buyToSettle" />
>       <link name="sellToSettle" />
>    </links>
>    <receive name="receiveBuyerInformation" createInstance="yes" ...>
>       <sources>
>          <source linkName="buyToSettle" />
>       </sources>
>       <correlations>
>          <correlation set="tradeID" initiate="join" />
>       </correlations>
>    </receive>
>    <receive name="receiveSellerInformation" createInstance="yes" ...>
>       <sources>
>          <source linkName="sellToSettle" />
>       </sources>
>       <correlations>
>          <correlation set="tradeID" initiate="join" />
>       </correlations>
>    </receive>
>    <invoke name="settleTrade" ...>
>       <targets>
>          <joinCondition>$buyToSettle and $sellToSettle</joinCondition>
>          <target linkName="buyToSettle" />
>          <target linkName="sellToSettle" />
>       </targets>
>    </invoke>
>    ...
> </flow>

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira