Method: EventMachine::PeriodicTimer#fire

Defined in:
lib/em/timers.rb

#fireObject



54
55
56
57
58
59
# File 'lib/em/timers.rb', line 54

def fire
  unless @cancelled
    @code.call
    schedule
  end
end