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