Skip to content

Instantly share code, notes, and snippets.

@mrkn
Created April 9, 2014 12:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrkn/10265611 to your computer and use it in GitHub Desktop.
Save mrkn/10265611 to your computer and use it in GitHub Desktop.
require 'thread'
queue = Queue.new
thread = Thread.start do
loop do
queue.pop.call
end
end
loop do
queue << -> do
p Time.now
sleep 1
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment