# File lib/ruote/svc/dispatch_pool.rb, line 121
    def do_not_thread?(participant, msg)

      # :default => false makes participant_send return false if no method
      # were found (else it would raise a NoMethodError)

      Ruote.participant_send(
        participant,
        [ :do_not_thread, :do_not_thread?, :dont_thread, :dont_thread? ],
        'workitem' => Ruote::Workitem.new(msg['workitem']), :default => false)
    end