module GlobalRegistry::Bindings

Public Class Methods

configure() { |self| ... } click to toggle source
# File lib/global_registry_bindings.rb, line 9
def self.configure
  yield self
end
redis_error_action() click to toggle source
# File lib/global_registry_bindings.rb, line 21
def self.redis_error_action
  @redis_error_action ||= :log
end
redis_error_action=(action) click to toggle source
# File lib/global_registry_bindings.rb, line 25
def self.redis_error_action=(action)
  action = :log unless %i[ignore log raise].include? action
  @redis_error_action = action
end
sidekiq_options() click to toggle source
# File lib/global_registry_bindings.rb, line 13
def self.sidekiq_options
  @sidekiq_options ||= {}
end
sidekiq_options=(opts) click to toggle source
# File lib/global_registry_bindings.rb, line 17
def self.sidekiq_options=(opts)
  @sidekiq_options = opts
end