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:



196
197
198
# File 'lib/temporalio/worker/workflow_replayer.rb', line 196

def history
  @history
end

#replay_failureException? (readonly)

Returns Failure during replay if any.

Returns:

  • (Exception, nil)

    Failure during replay if any.



199
200
201
# File 'lib/temporalio/worker/workflow_replayer.rb', line 199

def replay_failure
  @replay_failure
end