# File lib/thin/backends/base.rb, line 46
      def start
        @stopping = false
        starter   = proc do
          connect
          @running = true
        end
        
        # Allow for early run up of eventmachine.
        if EventMachine.reactor_running?
          starter.call
        else
          EventMachine.run(&starter)
        end
      end