Skip to content

Events and Handlers

akurlykov edited this page May 12, 2017 · 3 revisions

Complete list of amazon history events

ActivityTaskCancelRequested

Not handled

ActivityTaskCanceled

Not handled

ActivityTaskCompleted

Custom handling: via @OnActivityCompleted in workflow template
Default handling: none

ActivityTaskFailed

Custom handling: via @OnActivityFailed in workflow template
Default handling: activity is automatically retried with time interval specified by global retry policy

ActivityTaskScheduled

Not handled

ActivityTaskStarted

Not handled

ActivityTaskTimedOut

Custom handling: none
Default handling: activity is automatically retried with time interval specified by global retry policy

CancelTimerFailed

Not handled

CancelWorkflowExecutionFailed

Custom handling: none
Default handling: if the cause for failure is "UNHANDLED_DECISION" then attempt to cancel workflow with the same details is made

ChildWorkflowExecutionCanceled

Custom handling: via @OnChildWorkflowCanceled in workflow template
Default handling: none

ChildWorkflowExecutionCompleted

Custom handling: via @OnChildWorkflowCompleted in workflow template
Default handling: none

ChildWorkflowExecutionFailed

Custom handling: via @OnChildWorkflowFailed in workflow template
Default handling: none

ChildWorkflowExecutionStarted

Custom handling: via @OnChildWorkflowStarted in workflow template
Default handling: none

ChildWorkflowExecutionTerminated

Custom handling: via @OnChildWorkflowTerminated in workflow template
Default handling: none

ChildWorkflowExecutionTimedOut

Custom handling: via @OnChildWorkflowTimedOut in workflow template
Default handling: none

CompleteWorkflowExecutionFailed

Custom handling: none
Default handling: if the cause for failure is "UNHANDLED_DECISION" then attempt to complete workflow with the same result is made

ContinueAsNewWorkflowExecutionFailed

Custom handling: none
Default handling: TBD

DecisionTaskCompleted

Not handled

DecisionTaskScheduled

Not handled

DecisionTaskStarted

Not handled

DecisionTaskTimedOut

Not handled

ExternalWorkflowExecutionCancelRequested

Not handled

ExternalWorkflowExecutionSignaled

Not handled

FailWorkflowExecutionFailed

Custom handling: none
Default handling: if the cause for failure is "UNHANDLED_DECISION" then attempt to fail workflow with the same reason and details is made

MarkerRecorded

Custom handling: via @OnMarkerRecorded in workflow template
Default handling: none

RecordMarkerFailed

Custom handling: via @OnRecordMarkerFailed in workflow template
Default handling: none

RequestCancelActivityTaskFailed

Not handled

RequestCancelExternalWorkflowExecutionFailed

Not handled

RequestCancelExternalWorkflowExecutionInitiated

Not handled

ScheduleActivityTaskFailed

Not handled

SignalExternalWorkflowExecutionFailed

Not handled

SignalExternalWorkflowExecutionInitiated

Not handled

StartActivityTaskFailed

Not handled

StartChildWorkflowExecutionFailed

Custom handling: via @OnStartChildWorkflowFailed in workflow template
Default handling: none

StartChildWorkflowExecutionInitiated

Not handled

StartTimerFailed

Not handled

TimerCanceled

Not handled

TimerFired

Custom handling: via @OnTimerFired in workflow template
Default handling: none

TimerStarted

Not handled

WorkflowExecutionCancelRequested

Custom handling: via @OnWorkflowCancelRequested in workflow template
Default handling: none

WorkflowExecutionCanceled

Not handled

WorkflowExecutionCompleted

Not handled

WorkflowExecutionContinuedAsNew

Not handled

WorkflowExecutionFailed

Not handled

WorkflowExecutionSignaled

Custom handling: via @OnSignalReceived in workflow template
Default handling: none

WorkflowExecutionStarted

Custom handling: via @OnWorkflowStarted in workflow template
Default handling: none

WorkflowExecutionTerminated

Not handled

WorkflowExecutionTimedOut

Not handled