<?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 Suspend Functionality in Activiti in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/suspend-functionality-in-activiti/m-p/236800#M189930</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;First of all i need to understand how suspend action works in activiti.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Assume, i have a scenario &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; Start -&amp;gt; Service Task1 -&amp;gt; Service Task2 -&amp;gt;End&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Service Task 1 - counts from 1 to 1000&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Service Task 2 - counts from 1001 to 2000&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am trying to suspend after the execution of Service Task 1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;runtimeService = processEngine.getRuntimeService();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; processInstance = runtimeService.startProcessInstanceByKey("suspendDelUser");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; When process starts, Control directly goes to Service Task 1 and then to Service Task 2 and then Ends&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AFAIK, to suspend process, &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; String ProcInstanceId = processInstance.getProcessInstanceId();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; runtimeService.suspendProcessInstanceById(ProcInstanceId);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; which i am not getting.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;How to suspend the process, when we are in the middle of execution of Service Task 1 (Or after completion of Service Task 1)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;But it should not go to Service Task 2?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Mar 2016 06:22:38 GMT</pubDate>
    <dc:creator>chandanmb1</dc:creator>
    <dc:date>2016-03-29T06:22:38Z</dc:date>
    <item>
      <title>Suspend Functionality in Activiti</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/suspend-functionality-in-activiti/m-p/236800#M189930</link>
      <description>Hi,First of all i need to understand how suspend action works in activiti.Assume, i have a scenario  Start -&amp;gt; Service Task1 -&amp;gt; Service Task2 -&amp;gt;EndService Task 1 - counts from 1 to 1000Service Task 2 - counts from 1001 to 2000I am trying to suspend after the execution of Service Task 1&amp;nbsp;&amp;nbsp;&amp;nbsp;run</description>
      <pubDate>Tue, 29 Mar 2016 06:22:38 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/suspend-functionality-in-activiti/m-p/236800#M189930</guid>
      <dc:creator>chandanmb1</dc:creator>
      <dc:date>2016-03-29T06:22:38Z</dc:date>
    </item>
    <item>
      <title>Re: Suspend Functionality in Activiti</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/suspend-functionality-in-activiti/m-p/236801#M189931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Try to mark the ServiceTask1 and ServiceTask2 as asynchronous and then put an execution listener on ServiceTask1 (listening the end event of this task).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;inside this execution listener you could suspend the process instance (exactly as you wrote in the prev. post)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This way the suspendProcessInstanceById will be called between these 2 service tasks in separate transactions.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;see: &lt;/SPAN&gt;&lt;A href="http://www.activiti.org/userguide/#asyncContinuations" rel="nofollow noopener noreferrer"&gt;http://www.activiti.org/userguide/#asyncContinuations&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I didn't test it but I think it will work. &lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Mar 2016 08:08:47 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/suspend-functionality-in-activiti/m-p/236801#M189931</guid>
      <dc:creator>vasile_dirla</dc:creator>
      <dc:date>2016-03-29T08:08:47Z</dc:date>
    </item>
    <item>
      <title>Re: Suspend Functionality in Activiti</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/suspend-functionality-in-activiti/m-p/236802#M189932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for helping.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I added activiti:async="true" to my bpmn process xml.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;But the Service Task 1 didnt executed, but directly it printed the ProcessInstanceID in my console.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I also didnt understand what is execution listener ? and how to add it ?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Mar 2016 10:32:12 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/suspend-functionality-in-activiti/m-p/236802#M189932</guid>
      <dc:creator>chandanmb1</dc:creator>
      <dc:date>2016-03-29T10:32:12Z</dc:date>
    </item>
    <item>
      <title>Re: Suspend Functionality in Activiti</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/suspend-functionality-in-activiti/m-p/236803#M189933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;This is my sample code. I have added activiti:async=true&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;MainClass&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;processEngine = ProcessEngines.getDefaultProcessEngine();&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; repositoryService = processEngine.getRepositoryService();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; Deployment deploymentId = repositoryService.createDeployment().addClasspathResource("chanprocess.bpmn20.xml")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .deploy();&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;runtimeService = processEngine.getRuntimeService();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;processInstance = runtimeService.startProcessInstanceByKey("development");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; System.out.println("————–process instance————– : ");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; String procDefId = processInstance.getProcessDefinitionId();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; System.out.println("ProcessDefinitionId : " + procDefId);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; String ProcInstanceId = processInstance.getProcessInstanceId();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; System.out.println("Process Instance ID :::::::::::::::" + ProcInstanceId);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Service Task 1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;public void execute(DelegateExecution delegate) throws Exception {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; for(int i=0;i&amp;lt;10;i++){&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; System.out.println("Task 1 ::::::::Welcome to Bosch");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; Thread.sleep(100);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; @Override&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; public void notify(DelegateExecution delegate) throws Exception {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; String id = delegate.getId();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; System.out.println("ID is :::::::::::::"+id);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It didnt executed the Service Task 1 class, but directly printed the Process Instance ID in the main class.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Is service Task1 somewhere running ?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Mar 2016 10:47:45 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/suspend-functionality-in-activiti/m-p/236803#M189933</guid>
      <dc:creator>chandanmb1</dc:creator>
      <dc:date>2016-03-29T10:47:45Z</dc:date>
    </item>
    <item>
      <title>Re: Suspend Functionality in Activiti</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/suspend-functionality-in-activiti/m-p/236804#M189934</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Could you create jUnit test please?&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="https://forums.activiti.org/content/sticky-how-write-unit-test" rel="nofollow noopener noreferrer"&gt;https://forums.activiti.org/content/sticky-how-write-unit-test&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Martin&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Mar 2016 06:25:04 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/suspend-functionality-in-activiti/m-p/236804#M189934</guid>
      <dc:creator>martin_grofcik</dc:creator>
      <dc:date>2016-03-30T06:25:04Z</dc:date>
    </item>
    <item>
      <title>Re: Suspend Functionality in Activiti</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/suspend-functionality-in-activiti/m-p/236805#M189935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I have created the Junit code , but how to upload the project and where ?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Mar 2016 08:54:39 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/suspend-functionality-in-activiti/m-p/236805#M189935</guid>
      <dc:creator>chandanmb1</dc:creator>
      <dc:date>2016-03-30T08:54:39Z</dc:date>
    </item>
    <item>
      <title>Re: Suspend Functionality in Activiti</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/suspend-functionality-in-activiti/m-p/236806#M189936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello Martin,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is the code.&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="https://github.com/chandanmb/activitiinaction" rel="nofollow noopener noreferrer"&gt;https://github.com/chandanmb/activitiinaction&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Please verify and let me know how to achieve asynchronous action as well as suspend in activiti&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chandan&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Mar 2016 04:26:42 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/suspend-functionality-in-activiti/m-p/236806#M189936</guid>
      <dc:creator>chandanmb1</dc:creator>
      <dc:date>2016-03-31T04:26:42Z</dc:date>
    </item>
    <item>
      <title>Re: Suspend Functionality in Activiti</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/suspend-functionality-in-activiti/m-p/236807#M189937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello vasile.dirla /Martin,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Please verify my code uploaded in github.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Let me know your opinions.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chandan&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Mar 2016 14:26:59 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/suspend-functionality-in-activiti/m-p/236807#M189937</guid>
      <dc:creator>chandanmb1</dc:creator>
      <dc:date>2016-03-31T14:26:59Z</dc:date>
    </item>
    <item>
      <title>Re: Suspend Functionality in Activiti</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/suspend-functionality-in-activiti/m-p/236808#M189938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Chandan,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Pull request with jUnit test example fix &lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="https://github.com/chandanmb/activitiinaction/pull/9" rel="nofollow noopener noreferrer"&gt;https://github.com/chandanmb/activitiinaction/pull/9&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Martin&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Apr 2016 08:06:33 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/suspend-functionality-in-activiti/m-p/236808#M189938</guid>
      <dc:creator>martin_grofcik</dc:creator>
      <dc:date>2016-04-04T08:06:33Z</dc:date>
    </item>
    <item>
      <title>Re: Suspend Functionality in Activiti</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/suspend-functionality-in-activiti/m-p/236809#M189939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks martin for the code.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;But the code is not working as expected i guess.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It is executing the Task 1 and i should get the control in the notify method to stop the further execution of workflow.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Currently , what is happening is &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;1. It is executing Task1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. It is executing Task2&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3. It is not going for Notify&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;To achieve is&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;1. Task 1 to be executed&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. Notify method to be triggered to suspend the further execution of workflow&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3. Start the Suspended workflow&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;4. Should Resume executing from Task 2&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Please provide me the solution&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Apr 2016 11:12:50 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/suspend-functionality-in-activiti/m-p/236809#M189939</guid>
      <dc:creator>chandanmb1</dc:creator>
      <dc:date>2016-04-04T11:12:50Z</dc:date>
    </item>
    <item>
      <title>Re: Suspend Functionality in Activiti</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/suspend-functionality-in-activiti/m-p/236810#M189940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello Martin,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Also, whenever we want to pause an execution of workflow. Thread has to terminate otherwise it will consume the memory.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Whenever we resume back, then thread has to start the execution from the same state where it has got paused&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Apr 2016 14:33:31 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/suspend-functionality-in-activiti/m-p/236810#M189940</guid>
      <dc:creator>chandanmb1</dc:creator>
      <dc:date>2016-04-04T14:33:31Z</dc:date>
    </item>
    <item>
      <title>Re: Suspend Functionality in Activiti</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/suspend-functionality-in-activiti/m-p/236811#M189941</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;"Also, whenever we want to pause an execution of workflow. Thread has to terminate otherwise it will consume the memory."&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Activiti never keeps threads running nor consumes memory for suspended process instances.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Can you provide a unit test with what you're trying to do? I have a hard time following exactly what you are wanting to achieve.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Apr 2016 10:00:40 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/suspend-functionality-in-activiti/m-p/236811#M189941</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2016-04-07T10:00:40Z</dc:date>
    </item>
    <item>
      <title>Re: Suspend Functionality in Activiti</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/suspend-functionality-in-activiti/m-p/236812#M189942</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;create failing jUni test similar to org.activiti.MyUnitTest#testServiceProcess&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Martin&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Apr 2016 12:21:14 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/suspend-functionality-in-activiti/m-p/236812#M189942</guid>
      <dc:creator>martin_grofcik</dc:creator>
      <dc:date>2016-04-08T12:21:14Z</dc:date>
    </item>
  </channel>
</rss>

