Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 887 Bytes

compiler_sidekiqworker.md

File metadata and controls

32 lines (25 loc) · 887 Bytes

SidekiqWorker

Tapioca::Dsl::Compilers::SidekiqWorker generates RBI files classes that include Sidekiq::Worker.

For example, with the following class that includes Sidekiq::Worker:

class NotifierWorker
  include Sidekiq::Worker
  def perform(customer_id)
    # ...
  end
end

this compiler will produce the RBI file notifier_worker.rbi with the following content:

# notifier_worker.rbi
# typed: true
class NotifierWorker
  sig { params(customer_id: T.untyped).returns(String) }
  def self.perform_async(customer_id); end

  sig { params(interval: T.any(DateTime, Time), customer_id: T.untyped).returns(String) }
  def self.perform_at(interval, customer_id); end

  sig { params(interval: Numeric, customer_id: T.untyped).returns(String) }
  def self.perform_in(interval, customer_id); end
end