class Routemaster::Client::Backends::Sidekiq::Configuration
Attributes
sidekiq_options[W]
Public Class Methods
backtrace=(value)
click to toggle source
# File routemaster/client/backends/sidekiq/configuration.rb, line 16 def backtrace=(value) _sidekiq_options['backtrace'] = _stringify_symbol(value) end
configure() { |self| ... }
click to toggle source
# File routemaster/client/backends/sidekiq/configuration.rb, line 8 def configure yield self end
pool=(value)
click to toggle source
# File routemaster/client/backends/sidekiq/configuration.rb, line 24 def pool=(value) _sidekiq_options['pool'] = _stringify_symbol(value) end
queue=(value)
click to toggle source
# File routemaster/client/backends/sidekiq/configuration.rb, line 12 def queue=(value) _sidekiq_options['queue'] = _stringify_symbol(value) end
retry=(value)
click to toggle source
# File routemaster/client/backends/sidekiq/configuration.rb, line 20 def retry=(value) _sidekiq_options['retry'] = _stringify_symbol(value) end
sidekiq_options()
click to toggle source
# File routemaster/client/backends/sidekiq/configuration.rb, line 28 def sidekiq_options _sidekiq_options.clone end
Private Class Methods
_sidekiq_options()
click to toggle source
# File routemaster/client/backends/sidekiq/configuration.rb, line 36 def _sidekiq_options @_sidekiq_options ||= {} end
_stringify_symbol(value)
click to toggle source
# File routemaster/client/backends/sidekiq/configuration.rb, line 40 def _stringify_symbol(value) value.is_a?(Symbol) ? value.to_s : value end