Guest User

Untitled

a guest
Nov 18th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. require 'eventmachine'
  2.  
  3.  
  4. EM.run do
  5. EM.add_timer(10) do
  6. puts "STOP"
  7. EM.stop_event_loop
  8. end
  9.  
  10. EM.add_periodic_timer(1) do
  11. puts "time elapsed"
  12. end
  13. end
Add Comment
Please, Sign In to add comment