nsleta/exponential_backoff

v1.0.1 2021-11-26 12:52 UTC

This package is not auto-updated.

Last update: 2024-09-30 21:31:45 UTC


README

安装说明

composer require nsleta/exponential_backoff

用法

    $retry = new ExponentialBackoff\Retry();
    $retry->setInterval(3000); // optional, default interval is 2000
    $retry->setMaxAttempts(2); // optional, default max attempts is 3
    $result = $retry->call(function() { return 'done'; }, [RuntimeException::class]);