This layer will retry failed operations when [Error::is_temporary]
returns true.
If the operation still failed, this layer will set error to
Persistent which means error has been retried.
write and blocking_write don't support retry so far,
visit this issue for more details.
Retry layer
Add retry for temporary failed operations.
Notes
This layer will retry failed operations when [
Error::is_temporary
] returns true. If the operation still failed, this layer will set error toPersistent
which means error has been retried.write
andblocking_write
don't support retry so far, visit this issue for more details.Examples