Class: Cadence::Workflow::Serializer::CompleteWorkflow

Inherits:
Base
  • Object
show all
Defined in:
lib/cadence/workflow/serializer/complete_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
# File 'lib/cadence/workflow/serializer/complete_workflow.rb', line 8

def to_thrift
  CadenceThrift::Decision.new(
    decisionType: CadenceThrift::DecisionType::CompleteWorkflowExecution,
    completeWorkflowExecutionDecisionAttributes:
      CadenceThrift::CompleteWorkflowExecutionDecisionAttributes.new(
        result: JSON.serialize(object.result)
      )
  )
end