# File lib/rufus/sc/scheduler.rb, line 325 def trigger_job (blocking, &block) if blocking block.call else Thread.new { block.call } end end