- #38 MISRA compliance update
- #29 Set BACKOFF_ALGORITHM_RETRY_FOREVER to be nonzero and add header guards for C++ linkage.
- #27 Fix incorrect comment about use of BACKOFF_ALGORITHM_RETRY_FOREVER constant in BackoffAlgorithm_GetNextBackoff API.
- #24 Fix MISRA 10.4 and 10.7 rule violations, and add documentation of MISRA compliance.
- #18, #19, and #20 Documentation fixes.
This is the first release of the backoffAlgorithm library in this repository.
The backoffAlgorithm library is a utility library to calculate backoff period using an exponential backoff with jitter algorithm for retrying network operations (like failed network connection with server). This library uses the "Full Jitter" strategy for the exponential backoff with jitter algorithm. More information about the algorithm can be seen in the Exponential Backoff and Jitter AWS blog.