Class: DurableFlow::ChildWorkflowBuilder::Request
- Inherits:
-
Data
- Object
- Data
- DurableFlow::ChildWorkflowBuilder::Request
- Defined in:
- lib/durable_flow/child_workflow_builder.rb
Instance Attribute Summary collapse
-
#workflow_args ⇒ Object
readonly
Returns the value of attribute workflow_args.
-
#workflow_class ⇒ Object
readonly
Returns the value of attribute workflow_class.
-
#workflow_key ⇒ Object
readonly
Returns the value of attribute workflow_key.
-
#workflow_kwargs ⇒ Object
readonly
Returns the value of attribute workflow_kwargs.
Instance Method Summary collapse
Instance Attribute Details
#workflow_args ⇒ Object (readonly)
Returns the value of attribute workflow_args
5 6 7 |
# File 'lib/durable_flow/child_workflow_builder.rb', line 5 def workflow_args @workflow_args end |
#workflow_class ⇒ Object (readonly)
Returns the value of attribute workflow_class
5 6 7 |
# File 'lib/durable_flow/child_workflow_builder.rb', line 5 def workflow_class @workflow_class end |
#workflow_key ⇒ Object (readonly)
Returns the value of attribute workflow_key
5 6 7 |
# File 'lib/durable_flow/child_workflow_builder.rb', line 5 def workflow_key @workflow_key end |
#workflow_kwargs ⇒ Object (readonly)
Returns the value of attribute workflow_kwargs
5 6 7 |
# File 'lib/durable_flow/child_workflow_builder.rb', line 5 def workflow_kwargs @workflow_kwargs end |
Instance Method Details
#perform_later ⇒ Object
6 7 8 |
# File 'lib/durable_flow/child_workflow_builder.rb', line 6 def perform_later workflow_class.perform_later(*workflow_args, **workflow_kwargs) end |