Skip to content

Instantly share code, notes, and snippets.

@alebian
Created August 15, 2018 12:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alebian/1bd980b683987846b9301e8619a81f55 to your computer and use it in GitHub Desktop.
Save alebian/1bd980b683987846b9301e8619a81f55 to your computer and use it in GitHub Desktop.
class Retryer
def initialize
@retry_times = 3
@block = Proc.new {}
@args = nil
@backoff = false
end
def block(&block)
@block = block
self
end
def args(*args)
@args = args
self
end
def times(times)
@retry_times = times
self
end
def with_backoff
@backoff = true
self
end
def execute(*args)
@tries = 0
begin
sleep ((2 ** @tries) - 1) / 2 if @backoff
@tries += 1
puts "Try ##{@tries}"
if @args.nil?
@block.call(*args)
else
@block.call(*@args)
end
rescue Exception => e
retry if @tries < @retry_times
puts e
end
end
end
retryer = Retryer.new
.times(4)
.block { |a1, b1| puts a1 + b1 }
.args(1, 2)
.with_backoff
retryer.execute # Normal result
retryer.args(1).execute # Retries because nil can't be coerced into Integer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment