Method: ActiveInteractor::Interactor::Perform#perform
- Defined in:
- lib/active_interactor/interactor/perform.rb
#perform ⇒ Object
This method is abstract.
interactors should override #perform with the appropriate steps and context mutations required for the interactor to do its work.
The steps to run when an interactor is called. An interactor's #perform method should never be called directly on an interactor instance and should instead be invoked by the interactor's class method .perform.
210 |
# File 'lib/active_interactor/interactor/perform.rb', line 210 def perform; end |