# File lib/thin/backends/base.rb, line 62
      def stop!
        @running  = false
        @stopping = false
        
        EventMachine.stop if EventMachine.reactor_running?
        @connections.each { |connection| connection.close_connection }
        close
      end