Skip to content

Instantly share code, notes, and snippets.

@kennethkalmer
Created September 30, 2009 21:46
Show Gist options
  • Save kennethkalmer/198483 to your computer and use it in GitHub Desktop.
Save kennethkalmer/198483 to your computer and use it in GitHub Desktop.
# Ensure the AMQP connection is started
def start!
return if started?
Thread.main[:ruote_amqp_connection] = Thread.new do
Thread.abort_on_exception = true
AMQP.start { RuoteAMQP.started! }
end
sleep 0.001 until RuoteAMQP.started?
MQ.prefetch(1)
end
# Check whether the AMQP connection is started
def started?
Thread.main[:ruote_amqp_started] == true
end
def started! #:nodoc:
Thread.main[:ruote_amqp_started] = true
end
# Close down the AMQP connections
def stop!
AMQP.stop
Thread.main[:ruote_amqp_connection].join
Thread.main[:ruote_amqp_started] = false
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment