module Sidekiq::Job::Iterable::ClassMethods

@api private

Public Instance Methods

method_added(method_name) click to toggle source
Calls superclass method
# File lib/sidekiq/job/iterable.rb, line 19
def method_added(method_name)
  raise "#{self} is an iterable job and must not define #perform" if method_name == :perform
  super
end