-
-
Notifications
You must be signed in to change notification settings - Fork 35
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
docs: document custom Sleeper impl #147
Merged
Merged
Changes from 1 commit
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
c43737f
docs: document custom Sleeper impl
SteveLauC 0cfae4b
docs: ignore the example
SteveLauC 5db9a15
style: fmt
SteveLauC 9b08faa
docs: address feedback
SteveLauC ef1c0fa
docs: add MonoioSleeper to docs/examples
SteveLauC fc88e36
docs: remove backticks around Sleeper
SteveLauC File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
style: fmt
- Loading branch information
commit 5db9a154fcebed19563a3672b6c067487fcb28a8
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,22 +32,22 @@ | |
//! # Sleep | ||
//! | ||
//! Retry in BackON requires an implementation for sleeping. BackON will accept a [`Sleeper`] to pause for a specified duration. | ||
//! | ||
//! | ||
//! ## Default `Sleeper` | ||
//! | ||
//! Currently, BackON has 2 built-in `Sleeper` implementations for different environments, | ||
//! they are gated under their own features, which are enabled by default: | ||
//! | ||
//! | ||
//! | `Sleeper` | feature | Environment | | ||
//! |---------------------|------------------|-------------| | ||
//! | [`TokioSleeper`] | tokio-sleep | non-wasm32 | | ||
//! | [`GlooTimersSleep`] | gloo-timers-sleep| wasm32 | | ||
//! | ||
//! | ||
//! ## Custom `Sleeper` | ||
//! | ||
//! If you do not want to use the built-in `Sleeper`, you CAN provide a custom | ||
//! | ||
//! If you do not want to use the built-in `Sleeper`, you CAN provide a custom | ||
//! implementation, here is an example that implements a `Sleeper` with `monoio::time::sleep`: | ||
//! | ||
//! | ||
//! ```rust,ignore | ||
SteveLauC marked this conversation as resolved.
Show resolved
Hide resolved
|
||
//! use std::time::Duration; | ||
//! use backon::Sleeper; | ||
|
@@ -65,7 +65,7 @@ | |
//! } | ||
//! } | ||
//! ``` | ||
//! | ||
//! | ||
//! ## The empty `Sleeper` | ||
//! | ||
//! If neither feature is enabled nor a custom implementation is provided, BackON will fallback to the empty sleeper. This will cause a panic in the `debug` profile and do nothing in the `release` profile. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is out-of-date now. We will raise a build error now. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Updated |
||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Should be
3
, we havestd-blocking-sleep
for blocking context.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.
Added the
BlockingSleeper
to the table.