Class: Hyrax::Actors::InitializeWorkflowActor Deprecated
- Inherits:
-
AbstractActor
- Object
- AbstractActor
- Hyrax::Actors::InitializeWorkflowActor
- Defined in:
- app/actors/hyrax/actors/initialize_workflow_actor.rb
Overview
Deprecated.
Responsible for generating the workflow for the given curation_concern. Done through direct collaboration with the configured Hyrax::Actors::InitializeWorkflowActor.workflow_factory
Instance Attribute Summary
Attributes inherited from AbstractActor
Instance Method Summary collapse
-
#create(env) ⇒ Boolean
True if create was successful.
Methods inherited from AbstractActor
Constructor Details
This class inherits a constructor from Hyrax::Actors::AbstractActor
Instance Method Details
#create(env) ⇒ Boolean
Returns true if create was successful.
18 19 20 21 |
# File 'app/actors/hyrax/actors/initialize_workflow_actor.rb', line 18 def create(env) Deprecation.warn('Use Hyrax::Listeners::WorkflowListener instead.') next_actor.create(env) && create_workflow(env) end |