# File lib/thin/backends/base.rb, line 62
      def stop
        @running  = false
        @stopping = true
        
        # Do not accept anymore connection
        disconnect
        stop! if @connections.empty?
      end