# File lib/reactor/backoff.rb, line 32
    def next
      current = @delay
      current = 0.1 if current.zero?
      @delay = [10, 2 * current].min
      return current
    end