class Gapic::Operation::RetryPolicy

def increment_delay!

Calculate and set the next delay value.
#
def increment_delay!
  @delay = [delay * multiplier, max_delay].min
end