Class: Temporalio::Worker::WorkflowReplayer::ReplayResult

Inherits:
Object
  • Object
show all
Defined in:
lib/temporalio/worker/workflow_replayer.rb

Overview

Result of a single workflow replay run.

Instance Attribute Summary collapse

Instance Attribute Details

#historyWorkflowHistory (readonly)

Returns History originally passed in to the replayer.

Returns:



171
172
173
# File 'lib/temporalio/worker/workflow_replayer.rb', line 171

def history
  @history
end

#replay_failureException? (readonly)

Returns Failure during replay if any.

Returns:

  • (Exception, nil)

    Failure during replay if any.



174
175
176
# File 'lib/temporalio/worker/workflow_replayer.rb', line 174

def replay_failure
  @replay_failure
end