Usage
ntry(fn, n) %::% Function : numeric : . ntry(fn, n)Details
Imagine a function that attempts to access a network resource, like
a web service or database. Sometimes there will be network timeouts
that you want to recover from, without having to change the application
logic. This function allows you to do that, while specifying a maximum
retry limit so as not to block the function forever. This higher-order function will call the specified function up to n
times, returning on the first successful call. The function fn
is a closure that takes a single argument representing the attempt number. If calling the function fails n times, then ntry will fail with an error.