Last active
August 29, 2015 14:11
-
-
Save eric-wood/34a37e240e8c6d4333a7 to your computer and use it in GitHub Desktop.
timing
This file contains hidden or 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
timer = Thread.new do | |
Thread.current[:delay] = 1 | |
loop do | |
sleep(Thread.current[:delay]) | |
puts "boom! #{Thread.current[:delay]}" | |
end | |
end | |
sleep(3) | |
timer[:delay] = 2 | |
sleep(5) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment