Sha256: c0ad05fabfe2f8273396d286b18a64dfe541b872f1e994bc2dd8c3b7b7af773e
Contents?: true
Size: 547 Bytes
Versions: 31
Compression:
Stored size: 547 Bytes
Contents
# frozen_string_literal: true module Sidekiq # Sidekiq::Job is a new alias for Sidekiq::Worker as of Sidekiq 6.3.0. # Use `include Sidekiq::Job` rather than `include Sidekiq::Worker`. # # The term "worker" is too generic and overly confusing, used in several # different contexts meaning different things. Many people call a Sidekiq # process a "worker". Some people call the thread that executes jobs a # "worker". This change brings Sidekiq closer to ActiveJob where your job # classes extend ApplicationJob. Worker = Job end
Version data entries
31 entries across 31 versions & 1 rubygems