module Rabbitek

High performance background job processing using RabbitMQ

Constants

VERSION

Public Class Methods

bunny_connection() click to toggle source
# File lib/rabbitek.rb, line 54
def self.bunny_connection
  @bunny_connection ||= BunnyConnection.initialize_connection
end
close_bunny_connection() click to toggle source
# File lib/rabbitek.rb, line 50
def self.close_bunny_connection
  bunny_connection.close
end
config() click to toggle source
# File lib/rabbitek.rb, line 30
def self.config
  @config ||= Config.new
end
configure() { |config| ... } click to toggle source
# File lib/rabbitek.rb, line 34
def self.configure
  yield(config)
end
create_channel() click to toggle source
# File lib/rabbitek.rb, line 46
def self.create_channel
  bunny_connection.create_channel
end
logger() click to toggle source
# File lib/rabbitek.rb, line 42
def self.logger
  @config.logger
end
reloader() click to toggle source
# File lib/rabbitek.rb, line 38
def self.reloader
  config.reloader
end