module Reliable

Constants

MalformedUUID
POP_TIMEOUT
PROCESSING_TIMEOUT
TIME_TRAVEL_DELAY
VERSION

Public Class Methods

[](queue) click to toggle source
# File lib/reliable.rb, line 14
def self.[](queue)
  @queues[queue]
end
logger() click to toggle source
# File lib/reliable.rb, line 26
def self.logger
  @logger ||= NullLogger.new
end
logger=(new_logger) click to toggle source
# File lib/reliable.rb, line 30
def self.logger=(new_logger)
  @logger = new_logger
end