class Rufus::Scheduler::Job

def kill


Kills all the threads this Job currently has going on.
def kill
  threads.each { |t| t.raise(KillSignal) }
end