https://github.com/xmidt-org/retry
Provides retry semantics for tasks, with easily unmarshalable configuration and support for exponential backoff.
https://github.com/xmidt-org/retry
Last synced: 11 days ago
JSON representation
Provides retry semantics for tasks, with easily unmarshalable configuration and support for exponential backoff.
- Host: GitHub
- URL: https://github.com/xmidt-org/retry
- Owner: xmidt-org
- License: apache-2.0
- Created: 2023-07-27T04:41:51.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-04-08T11:07:46.000Z (about 2 months ago)
- Last Synced: 2025-05-13T00:52:29.622Z (11 days ago)
- Language: Go
- Size: 154 KB
- Stars: 0
- Watchers: 12
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# retry
retry provides simple task retry logic.
[](https://github.com/xmidt-org/retry/actions)
[](http://codecov.io/github/xmidt-org/retry?branch=main)
[](https://goreportcard.com/report/github.com/xmidt-org/retry)
[](https://github.com/xmidt-org/retry/blob/main/LICENSE)
[](https://sonarcloud.io/dashboard?id=xmidt-org_PROJECT)
[](CHANGELOG.md)
[](https://pkg.go.dev/github.com/xmidt-org/retry)## Summary
retry provides simple ways of executing tasks with configurable retry semantics. A focus is place on external configuration driving the retry behavior. Tasks may be executed without retries, with a constant interval between retries, or using an exponential backoff.
## Table of Contents
- [Code of Conduct](#code-of-conduct)
- [Install](#install)
- [Contributing](#contributing)## Code of Conduct
This project and everyone participating in it are governed by the [XMiDT Code Of Conduct](https://xmidt.io/docs/community/code_of_conduct/).
By participating, you agree to this Code.## Install
go get -u github.com/xmidt-org/retry
## Contributing
Refer to [CONTRIBUTING.md](CONTRIBUTING.md).