├── LICENSE.txt ├── README.md ├── composer.json └── src ├── AbstractRetryCondition.php ├── EmptyValueCondition.php ├── Exception.php ├── ExceptionBasedCondition.php ├── ExponentialBackoff.php └── NullCondition.php /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crowdstar/exponential-backoff/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crowdstar/exponential-backoff/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crowdstar/exponential-backoff/HEAD/composer.json -------------------------------------------------------------------------------- /src/AbstractRetryCondition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crowdstar/exponential-backoff/HEAD/src/AbstractRetryCondition.php -------------------------------------------------------------------------------- /src/EmptyValueCondition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crowdstar/exponential-backoff/HEAD/src/EmptyValueCondition.php -------------------------------------------------------------------------------- /src/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crowdstar/exponential-backoff/HEAD/src/Exception.php -------------------------------------------------------------------------------- /src/ExceptionBasedCondition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crowdstar/exponential-backoff/HEAD/src/ExceptionBasedCondition.php -------------------------------------------------------------------------------- /src/ExponentialBackoff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crowdstar/exponential-backoff/HEAD/src/ExponentialBackoff.php -------------------------------------------------------------------------------- /src/NullCondition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crowdstar/exponential-backoff/HEAD/src/NullCondition.php --------------------------------------------------------------------------------