當前位置: 首頁>>代碼示例>>Python>>正文


Python various_activities.BunchOfActivities類代碼示例

本文整理匯總了Python中various_activities.BunchOfActivities的典型用法代碼示例。如果您正苦於以下問題:Python BunchOfActivities類的具體用法?Python BunchOfActivities怎麽用?Python BunchOfActivities使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了BunchOfActivities類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: SelfCancellingWorkflowWithCascade

        class SelfCancellingWorkflowWithCascade(WorkflowDefinition):
            def __init__(self, workflow_execution):
                super(SelfCancellingWorkflowWithCascade, self).__init__(workflow_execution)
                self.activities_client = BunchOfActivities()

            @execute(version='1.1', execution_start_to_close_timeout=60)
            def execute(self):
                self.activities_client.heartbeating_activity(5)
                yield workflow_time.sleep(1)
                self.cancel()
                return_(True)
開發者ID:notthatbreezy,項目名稱:botoflow,代碼行數:11,代碼來源:test_cancellation.py

示例2: do_try_except

                def do_try_except():
                    arg_sum = 0
                    try:
                        arg_sum += yield BunchOfActivities.sum(arg1, arg2)
                        yield BunchOfActivities.throw()
                    except ActivityTaskFailedError as err:
                        if isinstance(err.cause, ValueError) \
                           and str(err.cause) == 'Hello-Error':

                            if err.event_id != 13 or err.activity_id != '2':
                                raise RuntimeError("Test Failed")
                            arg_sum += yield BunchOfActivities.sum(arg1, arg2)
                    yield workflow_time.sleep(1)
                    return_(arg_sum)
開發者ID:boto,項目名稱:botoflow,代碼行數:14,代碼來源:test_simple_workflows.py

示例3: OneActivityHeartbeatWorkflow

        class OneActivityHeartbeatWorkflow(WorkflowDefinition):
            def __init__(self, workflow_execution):
                super(OneActivityHeartbeatWorkflow, self).__init__(workflow_execution)
                self.activities_client = BunchOfActivities()

            @execute(version='1.1', execution_start_to_close_timeout=60)
            def execute(self):
                yield self.activities_client.heartbeating_activity(1)
開發者ID:notthatbreezy,項目名稱:botoflow,代碼行數:8,代碼來源:test_cancellation.py

示例4: OneActivityWorkflow

        class OneActivityWorkflow(WorkflowDefinition):
            def __init__(self, workflow_execution):
                super(OneActivityWorkflow, self).__init__(workflow_execution)
                self.activities_client = BunchOfActivities()

            @execute(version='1.1', execution_start_to_close_timeout=60)
            def execute(self, arg1, arg2):
                arg_sum = yield self.activities_client.sum(arg1, arg2)
                return_(arg_sum)
開發者ID:boto,項目名稱:botoflow,代碼行數:9,代碼來源:test_generic_workflows.py

示例5: ExternalExecutionCancelTargetWorkflow

        class ExternalExecutionCancelTargetWorkflow(WorkflowDefinition):
            def __init__(self, workflow_execution):
                super(ExternalExecutionCancelTargetWorkflow, self).__init__(
                    workflow_execution)
                self.activities_client = BunchOfActivities()

            @execute(version='1.1', execution_start_to_close_timeout=60)
            def execute(self):
                yield self.activities_client.sleep_activity(30)
                return_(True)
開發者ID:notthatbreezy,項目名稱:botoflow,代碼行數:10,代碼來源:test_cancellation.py

示例6: OneActivityHeartbeatCancelBeforeScheduleWorkflow

        class OneActivityHeartbeatCancelBeforeScheduleWorkflow(WorkflowDefinition):
            def __init__(self, workflow_execution):
                super(OneActivityHeartbeatCancelBeforeScheduleWorkflow, self).__init__(workflow_execution)
                self.activities_client = BunchOfActivities()

            @execute(version='1.1', execution_start_to_close_timeout=60)
            def execute(self):
                activity_future = self.activities_client.heartbeating_activity(2)
                yield activity_future.cancel()
                yield activity_future
                return_(False)
開發者ID:notthatbreezy,項目名稱:botoflow,代碼行數:11,代碼來源:test_cancellation.py

示例7: OneActivityHeartbeatCancelFailureWorkflow

        class OneActivityHeartbeatCancelFailureWorkflow(WorkflowDefinition):
            def __init__(self, workflow_execution):
                super(OneActivityHeartbeatCancelFailureWorkflow, self).__init__(workflow_execution)
                self.activities_client = BunchOfActivities()

            @execute(version='1.1', execution_start_to_close_timeout=60)
            def execute(self):
                activity_future = self.activities_client.heartbeating_activity(5)
                yield workflow_time.sleep(2)
                activity_future._activity_id = '100'  # set invalid ID
                yield activity_future.cancel()
                return_(False)
開發者ID:notthatbreezy,項目名稱:botoflow,代碼行數:12,代碼來源:test_cancellation.py

示例8: SelfCancellingWorkflowWithHandler

        class SelfCancellingWorkflowWithHandler(WorkflowDefinition):
            def __init__(self, workflow_execution):
                super(SelfCancellingWorkflowWithHandler, self).__init__(workflow_execution)
                self.activities_client = BunchOfActivities()

            @execute(version='1.1', execution_start_to_close_timeout=60)
            def execute(self, details=None):
                self.cancel(details)
                return_(True)

            @async
            def cancellation_handler(self):
                yield self.activities_client.cleanup_state_activity()
開發者ID:notthatbreezy,項目名稱:botoflow,代碼行數:13,代碼來源:test_cancellation.py

示例9: OneActivityHeartbeatIgnoreCancel

        class OneActivityHeartbeatIgnoreCancel(WorkflowDefinition):
            def __init__(self, workflow_execution):
                super(OneActivityHeartbeatIgnoreCancel, self).__init__(workflow_execution)
                self.activities_client = BunchOfActivities()

            @execute(version='1.1', execution_start_to_close_timeout=60)
            def execute(self):
                activity_future = self.activities_client.heartbeating_activity(2)
                yield activity_future.cancel()
                try:
                    yield activity_future
                except CancelledError:
                    pass
                return_(False)
開發者ID:notthatbreezy,項目名稱:botoflow,代碼行數:14,代碼來源:test_cancellation.py

示例10: BotoCancelRequestWorkflow

    class BotoCancelRequestWorkflow(WorkflowDefinition):
        def __init__(self, workflow_execution):
            super(TestBotoCancelWorkflows.BotoCancelRequestWorkflow, self).__init__(
                workflow_execution)
            self.activities_client = BunchOfActivities()

        @execute(version='1.1', execution_start_to_close_timeout=120)
        def execute(self):
            # lots of activities to exercise edge case handling
            self.activities_client.heartbeating_activity(5)
            self.activities_client.sum(1, 0)
            self.activities_client.sum(2, 0)
            yield self.activities_client.sum(3, 0)
            yield self.activities_client.sum(4, 0)
            yield self.activities_client.heartbeating_activity(5)
            return_(True)
開發者ID:notthatbreezy,項目名稱:botoflow,代碼行數:16,代碼來源:test_cancellation.py

示例11: execute

 def execute(self):
     arg_sum = yield BunchOfActivities.sleep_activity(10)
     return_(arg_sum)
開發者ID:notthatbreezy,項目名稱:botoflow,代碼行數:3,代碼來源:test_cancellation.py

示例12: __init__

 def __init__(self, workflow_execution):
     super(ExternalExecutionCancelTargetWorkflow, self).__init__(
         workflow_execution)
     self.activities_client = BunchOfActivities()
開發者ID:notthatbreezy,項目名稱:botoflow,代碼行數:4,代碼來源:test_cancellation.py

示例13: execute

 def execute(self, arg1, arg2):
     with activity_options(task_priority=66):
         arg_sum = yield BunchOfActivities.sum(arg1, arg2)
     return_(arg_sum)
開發者ID:boto,項目名稱:botoflow,代碼行數:4,代碼來源:test_simple_workflows.py

示例14: __init__

 def __init__(self, workflow_execution):
     super(OneActivityWorkflow, self).__init__(workflow_execution)
     self.activities_client = BunchOfActivities()
開發者ID:boto,項目名稱:botoflow,代碼行數:3,代碼來源:test_generic_workflows.py

示例15: execute

 def execute(self, template):
     (x, y) = yield ManualActivities.perform_task(template=template)
     arg_sum = yield BunchOfActivities.sum(x, y)
     return_(arg_sum)
開發者ID:boto,項目名稱:botoflow,代碼行數:4,代碼來源:test_manual_activities.py


注:本文中的various_activities.BunchOfActivities類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。