<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Parallel branches (or even multi-instances) and collision of variables. in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/parallel-branches-or-even-multi-instances-and-collision-of/m-p/148372#M103583</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have to check the code, but i believe setVariables.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Might be a good addition to the API to allow to set locals. If you need it, please file a Jira issue so we and you can track it.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 03 Jul 2013 09:09:26 GMT</pubDate>
    <dc:creator>jbarrez</dc:creator>
    <dc:date>2013-07-03T09:09:26Z</dc:date>
    <item>
      <title>Parallel branches (or even multi-instances) and collision of variables.</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/parallel-branches-or-even-multi-instances-and-collision-of/m-p/148365#M103576</link>
      <description>Hi all.i'm developing some new task in java, and right now i'm stuck with a problem.basically,i've a java task that makes a call, and after this a receiver that receives (as a message) the result of the call.Basically i call the /signal/‍ api passing also a parameter called results‍.this variable is</description>
      <pubDate>Mon, 17 Jun 2013 14:51:16 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/parallel-branches-or-even-multi-instances-and-collision-of/m-p/148365#M103576</guid>
      <dc:creator>esseti</dc:creator>
      <dc:date>2013-06-17T14:51:16Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel branches (or even multi-instances) and collision of variables.</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/parallel-branches-or-even-multi-instances-and-collision-of/m-p/148366#M103577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Variables can be set on the execution local (ie not on process instance scope). That is indeed how you should do it when using multi instance.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jun 2013 09:37:54 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/parallel-branches-or-even-multi-instances-and-collision-of/m-p/148366#M103577</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2013-06-19T09:37:54Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel branches (or even multi-instances) and collision of variables.</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/parallel-branches-or-even-multi-instances-and-collision-of/m-p/148367#M103578</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;thanks for the reply.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;can you point some references or something that explain what you mean with execution local and how to implement it?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jun 2013 08:12:34 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/parallel-branches-or-even-multi-instances-and-collision-of/m-p/148367#M103578</guid>
      <dc:creator>esseti</dc:creator>
      <dc:date>2013-06-25T08:12:34Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel branches (or even multi-instances) and collision of variables.</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/parallel-branches-or-even-multi-instances-and-collision-of/m-p/148368#M103579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You have 2 sets of methods on DelegateExecution and RuntimeService (similarly for DelegateTask and TaskSevrice):&lt;/SPAN&gt;&lt;BR /&gt;&lt;UL&gt;&lt;LI&gt;setVariable(…) and setVariables(…): If the variable with the given name is already set in the local scope, the variable is overridden. If not, the parent scope is consulted. If the parent has this variable locally, it's set, otherwise this process continues until the root-execution is reached or the variable is defined on a scope in between. If the variable reached the top-most parent, it's set there.&lt;/LI&gt;&lt;LI&gt;setVariableLocal(..) and setVariablesLocal(…): Set's the variable in the local scope. Parent executions (and siblings) are not affected. Child-scopes can access there local-variables of a parent (using getVariables()).&lt;/LI&gt;&lt;/UL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jun 2013 09:28:38 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/parallel-branches-or-even-multi-instances-and-collision-of/m-p/148368#M103579</guid>
      <dc:creator>frederikherema1</dc:creator>
      <dc:date>2013-06-25T09:28:38Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel branches (or even multi-instances) and collision of variables.</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/parallel-branches-or-even-multi-instances-and-collision-of/m-p/148369#M103580</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;ohh thanks.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;but in my case of the parallel branches, if i use setVariableLocal() will it keep the variables separated in the two branches? or what?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;basically, in the second example, is the scope set to the branch or to the process?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jun 2013 12:58:30 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/parallel-branches-or-even-multi-instances-and-collision-of/m-p/148369#M103580</guid>
      <dc:creator>esseti</dc:creator>
      <dc:date>2013-06-25T12:58:30Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel branches (or even multi-instances) and collision of variables.</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/parallel-branches-or-even-multi-instances-and-collision-of/m-p/148370#M103581</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you call setVariableLocal, yes, it will be separated in two branches.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jun 2013 17:29:40 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/parallel-branches-or-even-multi-instances-and-collision-of/m-p/148370#M103581</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2013-06-26T17:29:40Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel branches (or even multi-instances) and collision of variables.</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/parallel-branches-or-even-multi-instances-and-collision-of/m-p/148371#M103582</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;thanks.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;one (hopefully) last question: what does the receive message implements? setLocalVariables or setVariables?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jul 2013 09:15:12 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/parallel-branches-or-even-multi-instances-and-collision-of/m-p/148371#M103582</guid>
      <dc:creator>esseti</dc:creator>
      <dc:date>2013-07-01T09:15:12Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel branches (or even multi-instances) and collision of variables.</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/parallel-branches-or-even-multi-instances-and-collision-of/m-p/148372#M103583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have to check the code, but i believe setVariables.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Might be a good addition to the API to allow to set locals. If you need it, please file a Jira issue so we and you can track it.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jul 2013 09:09:26 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/parallel-branches-or-even-multi-instances-and-collision-of/m-p/148372#M103583</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2013-07-03T09:09:26Z</dc:date>
    </item>
  </channel>
</rss>

