Is there any way to shutdown activity and workflow worker after all the activities in my workflow implementation have completed its execution or if any of them throws any exception.
标签:
amazon-swf
相关问题
- Amazon AWS Simple Workflow Service SWF PHP Samples
- Triggering a SWF Workflow based on SQS messages
- How to convert Linux cron jobs to “the Amazon way”
- AWS SWF Decider 'java.net.SocketTimeoutExcepti
- Shutdown activity worker and workflow
相关文章
- Triggering a SWF Workflow based on SQS messages
- How to convert Linux cron jobs to “the Amazon way”
- AWS SWF Decider 'java.net.SocketTimeoutExcepti
- AWS流程框架等同的开放源代码[关闭](Open Source Equivalent of AWS
- Shutdown activity worker and workflow
- 如何Linux的cron作业转变为“亚马逊的方式”?(How to convert Linux cr
- DecisionTaskTimedOut when @Asynchronous annotation
- Open Source Equivalent of AWS Flow Framework [clos
You can have special "shutdown worker" activity type. This activity implementation initiates shutdown of its worker. At the end of the workflow execution you always invoke this activity from doFinally method of TryCatchFinally that wraps all other workflow logic.