# File lib/daemons/application_group.rb, line 164
    def stop_all(no_wait = false)
      @monitor.stop if @monitor
      
      threads = []
      
      @applications.each {|a| 
        threads << Thread.new do
          a.stop(no_wait)
        end
      }
      
      threads.each {|t| t.join}
    end