Class: Temporalio::Worker::WorkflowReplayer::ReplayResult
- Inherits:
-
Object
- Object
- Temporalio::Worker::WorkflowReplayer::ReplayResult
- Defined in:
- lib/temporalio/worker/workflow_replayer.rb
Overview
Result of a single workflow replay run.
Instance Attribute Summary collapse
-
#history ⇒ WorkflowHistory
readonly
History originally passed in to the replayer.
-
#replay_failure ⇒ Exception?
readonly
Failure during replay if any.
Instance Attribute Details
#history ⇒ WorkflowHistory (readonly)
Returns History originally passed in to the replayer.
171 172 173 |
# File 'lib/temporalio/worker/workflow_replayer.rb', line 171 def history @history end |
#replay_failure ⇒ Exception? (readonly)
Returns Failure during replay if any.
174 175 176 |
# File 'lib/temporalio/worker/workflow_replayer.rb', line 174 def replay_failure @replay_failure end |