[ 
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:     (was: 1.3.5)
                   1.4

> 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.4
>
>
> 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.
-
You can reply to this email to add a comment to the issue online.

Reply via email to