# File lib/ruote/part/dispatch_pool.rb, line 99
    def do_threaded_dispatch (participant, msg)

      # Maybe at some point a limit on the number of dispatch threads
      # would be OK.
      # Or maybe it's the job of an extension / subclass

      Thread.new do
        begin

          do_dispatch(participant, msg)

        rescue Exception => exception
          @context.error_handler.msg_handle(msg, exception)
        end
      end
    end