module Sidekiq::Job::Iterable::ClassMethods
@api private
Public Instance Methods
Source
# 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
Calls superclass method