vkartaviy / retry

The library for repeatable and retryable operations

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Batch

The library for repeatable and retryable operations.

Build Status

Here is a simple example:

<?php

use Retry\RetryProxy;
use Retry\Policy\SimpleRetryPolicy;
use Retry\BackOff\ExponentialBackOffPolicy;

$retryPolicy = new SimpleRetryPolicy(3);
$backOffPolicy = new ExponentialBackOffPolicy();

$proxy = new RetryProxy($retryPolicy, $backOffPolicy);
$result = $proxy->call(function() {
    // call external service and return result
});

About

The library for repeatable and retryable operations


Languages

Language:PHP 100.0%