Skip to content

Instantly share code, notes, and snippets.

@Poincare
Created June 26, 2012 19:11
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 Poincare/2998125 to your computer and use it in GitHub Desktop.
Save Poincare/2998125 to your computer and use it in GitHub Desktop.
require 'eventmachine'
EM.run do
EM.add_timer(10) do
puts "STOP"
EM.stop_event_loop
end
EM.add_periodic_timer(1) do
puts "time elapsed"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment