# File lib/merb-core/dispatch/worker.rb, line 47
      def restart
        # if we have a worker or thread, kill it.
        if started?
          @worker.thread.exit
          @worker = nil
        end
        start
      end