-
Notifications
You must be signed in to change notification settings - Fork 451
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use Duration in Schedule #2895
Use Duration in Schedule #2895
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great, LGTM!
We can get rid of all the xxxNano
code since that was a work-around to expose Duration
in a binary compat way without losing precision. We can leave this for another PR though
arrow-libs/fx/arrow-fx-resilience/src/commonMain/kotlin/arrow/fx/resilience/Schedule.kt
Show resolved
Hide resolved
arrow-libs/fx/arrow-fx-resilience/src/commonMain/kotlin/arrow/fx/resilience/Schedule.kt
Outdated
Show resolved
Hide resolved
Kover Report
|
@serras deprecation makes a lot sense indeed 👍 This gives users smooth transition to new module, and breaking change only in 2.0.0 🙌 |
Fixes #2744
I've only made the changes in the
arrow-fx-resilience
module, but they could be copied toarrow-fx-coroutines
if desired.