Exception: Temporalio::Error::WorkflowAlreadyStartedError
- Inherits:
-
Failure
- Object
- StandardError
- Temporalio::Error
- Failure
- Temporalio::Error::WorkflowAlreadyStartedError
- Defined in:
- lib/temporalio/error/failure.rb
Overview
Error raised by a client or workflow when a workflow execution has already started.
Instance Attribute Summary collapse
-
#run_id ⇒ String
readonly
Run ID of the already-started workflow if this was raised by the client.
-
#workflow_id ⇒ String
readonly
ID of the already-started workflow.
-
#workflow_type ⇒ String
readonly
Workflow type name of the already-started workflow.
Method Summary
Methods inherited from Temporalio::Error
Instance Attribute Details
#run_id ⇒ String (readonly)
Returns Run ID of the already-started workflow if this was raised by the client.
21 22 23 |
# File 'lib/temporalio/error/failure.rb', line 21 def run_id @run_id end |
#workflow_id ⇒ String (readonly)
Returns ID of the already-started workflow.
15 16 17 |
# File 'lib/temporalio/error/failure.rb', line 15 def workflow_id @workflow_id end |
#workflow_type ⇒ String (readonly)
Returns Workflow type name of the already-started workflow.
18 19 20 |
# File 'lib/temporalio/error/failure.rb', line 18 def workflow_type @workflow_type end |