Module: Sidekiq::Job::Iterable::ClassMethods Private

Defined in:
lib/sidekiq/job/iterable.rb

This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.

Instance Method Summary collapse

Instance Method Details

#method_added(method_name) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



19
20
21
22
# 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