Sha256: a5d0fc5ce0114916828ff6b3dc95a0299101e7bf03fa0cd455ba6c169a5d0bc9
Contents?: true
Size: 1.34 KB
Versions: 2
Compression:
Stored size: 1.34 KB
Contents
require 'carrot' module MessageQueue class Rabbit < Base def initialize(opts={}) @opts = opts end def delete(queue) send_command do client.queue(queue).delete end end def queue_size(queue) send_command do client.queue(queue).message_count end end def enqueue(queue, data) send_command do client.queue(queue, :durable => true).publish(Marshal.dump(data), :persistent => true) end end def dequeue(queue) send_command do task = client.queue(queue).pop(:ack => true) return unless task Marshal.load(task) end end def confirm(queue) send_command do client.queue(queue).ack end end def send_command(&block) retried = false begin block.call rescue Carrot::AMQP::Server::ServerDown => e if not retried puts "Error #{e.message}. Retrying..." @client = nil retried = true retry else raise e end end end def client @client ||= Carrot.new( :host => @opts['host'], :port => @opts['port'].to_i, :user => @opts['user'], :pass => @opts['pass'], :vhost => @opts['vhost'] ) end def stop client.stop end end end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
Bira-sweat_shop-1.0.0 | lib/message_queue/rabbit.rb |
famoseagle-sweat_shop-1.0.0 | lib/message_queue/rabbit.rb |