module Interactor::Organizer::InstanceMethods

Internal: Interactor::Organizer instance methods.

Public Instance Methods

call() click to toggle source

Internal: Invoke the organized Interactors. An Interactor::Organizer is expected not to define its own “#call” method in favor of this default implementation.

Returns nothing.

# File lib/interactor/organizer.rb, line 77
def call
  self.class.organized.each do |interactor|
    interactor.call!(context)
  end
end