Created
September 30, 2009 21:46
-
-
Save kennethkalmer/198483 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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