# File lib/pr_eventmachine.rb, line 236
236:   def run_timers
237:     now = Time.now
238:     while @timers.length > 0 and @timers.first.first <= now
239:       t = @timers.shift
240:       EventMachine::event_callback "", TimerFired, t.last
241:     end
242:   end