igorw/retry

A tiny library for retrying failing operations.

Maintainers

Details

github.com/igorw/retry

Source

Issues

Installs: 304 568

Dependents: 0

Suggesters: 0

Security: 0

Stars: 543

Watchers: 19

Forks: 29

Open Issues: 5

dev-master / 1.0.x-dev 2014-09-20 11:10 UTC

This package is not auto-updated.

Last update: 2024-04-23 01:24:39 UTC


README

A tiny library for retrying failing operations.

Since the network is reliable, things should always work. Am I right? For those cases when they don't, there is retry.

<?
use function igorw\retry;

// retry an operation up to 5 times
$user = retry(5, function () use ($id) {
    return User::find($id);
});

// here is why you want to start using HHVM
$user = retry(5, () ==> User::find($id));

// this is probably a bad idea
$user = retry(INF, () ==> {
    throw new RuntimeException('never gonna give you up');
});
?>

I know. You're welcome.