Created
September 4, 2012 22:47
-
-
Save bcobb/3627615 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# at_most(5.times) do | |
# some_volatile_operation | |
# end | |
def at_most(enum) | |
begin | |
yield | |
rescue => e | |
can_retry = enum.next rescue false | |
if can_retry | |
retry | |
else | |
raise e | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment