Skip to content

Instantly share code, notes, and snippets.

@besquared
Created April 2, 2009 03:19
Show Gist options
  • Select an option

  • Save besquared/89005 to your computer and use it in GitHub Desktop.

Select an option

Save besquared/89005 to your computer and use it in GitHub Desktop.
require 'thread'
queue = Queue.new
consumer = Thread.new do
value = queue.pop
end
consumer.join
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment