glhcp/server/vendor/stechstudio/backoff/src/helpers.php

8 lines
267 B
PHP
Raw Normal View History

2023-08-10 06:59:52 +00:00
<?php
if(!function_exists('backoff')) {
function backoff($callback, $maxAttempts = null, $strategy = null, $waitCap = null, $useJitter = null)
{
return (new \STS\Backoff\Backoff($maxAttempts, $strategy, $waitCap, $useJitter))->run($callback);
}
}