class Rufus::Scheduler::Job

def pause


#resume will not force old triggers in.
Note too that, during the pause time, the schedule kept the same. Calling

Future triggering of the job will not occur until #resume is called.
Note that it will not pause the execution of a block currently 'running'.

Pauses this job (sets the paused flag to true).
def pause
  @paused = true
end