module Sidekiq::Throttled::Worker

Adds helpers to your worker classes

@example Usage

class MyJob
  include Sidekiq::Job
  include Sidekiq::Throttled::Job

  sidkiq_options :queue => :my_queue
  sidekiq_throttle :threshold => { :limit => 123, :period => 1.hour },
                   :requeue => { :to => :other_queue, :with => :schedule }

  def perform
    # ...
  end
end

@see ClassMethods