module Sidekiq::EventBus

Constants

VERSION

Public Class Methods

config() click to toggle source
# File lib/sidekiq/event_bus.rb, line 21
def self.config
  @config ||= Configuration.new
end
configure() { |config| ... } click to toggle source
# File lib/sidekiq/event_bus.rb, line 29
def self.configure
  yield(config) if block_given?
end
utils() click to toggle source
# File lib/sidekiq/event_bus.rb, line 25
def self.utils
  @utils ||= Utils.new
end