class Rufus::Scheduler::EmScheduler

def stop(opts={})


EventMachine (but only if it started the EM by itself !).
If the :stop_em option is passed and set to true, it will stop the

Stops the scheduler.
def stop(opts={})
  @timer.cancel
  EM.stop if opts[:stop_em] and @em_thread
end