Class: Cadence::Workflow::Serializer::FailWorkflow

Inherits:
Base
  • Object
show all
Defined in:
lib/cadence/workflow/serializer/fail_workflow.rb

Instance Method Summary collapse

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from Cadence::Workflow::Serializer::Base

Instance Method Details

#to_thriftObject



8
9
10
11
12
13
14
15
16
17
# File 'lib/cadence/workflow/serializer/fail_workflow.rb', line 8

def to_thrift
  CadenceThrift::Decision.new(
    decisionType: CadenceThrift::DecisionType::FailWorkflowExecution,
    failWorkflowExecutionDecisionAttributes:
      CadenceThrift::FailWorkflowExecutionDecisionAttributes.new(
        reason: object.reason,
        details: JSON.serialize(object.details)
      )
  )
end