mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-05 12:57:42 +00:00
2e14b32ccd
* chore: Add copyright and license headers This commit adds the Apache 2.0 license and a copyright notice to the header of all source files. This ensures that the licensing and copyright information is clearly stated within the codebase. * cargo fmt * fix * fmt * fix clippy
83 lines
2.0 KiB
Rust
83 lines
2.0 KiB
Rust
// Copyright 2024 RustFS Team
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
use std::time::Duration;
|
|
|
|
pub const MAX_RETRY: i64 = 10;
|
|
pub const MAX_JITTER: f64 = 1.0;
|
|
pub const NO_JITTER: f64 = 0.0;
|
|
|
|
/*
|
|
struct Delay {
|
|
when: Instant,
|
|
}
|
|
|
|
impl Future for Delay {
|
|
type Output = &'static str;
|
|
|
|
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>)
|
|
-> Poll<&'static str>
|
|
{
|
|
if Instant::now() >= self.when {
|
|
println!("Hello world");
|
|
Poll::Ready("done")
|
|
} else {
|
|
// Ignore this line for now.
|
|
cx.waker().wake_by_ref();
|
|
Poll::Pending
|
|
}
|
|
}
|
|
}
|
|
|
|
struct RetryTimer {
|
|
rem: usize,
|
|
delay: Delay,
|
|
}
|
|
|
|
impl RetryTimer {
|
|
fn new() -> Self {
|
|
Self {
|
|
rem: 3,
|
|
delay: Delay { when: Instant::now() }
|
|
}
|
|
}
|
|
}
|
|
|
|
impl Stream for RetryTimer {
|
|
type Item = ();
|
|
|
|
fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>)
|
|
-> Poll<Option<()>>
|
|
{
|
|
if self.rem == 0 {
|
|
// No more delays
|
|
return Poll::Ready(None);
|
|
}
|
|
|
|
match Pin::new(&mut self.delay).poll(cx) {
|
|
Poll::Ready(_) => {
|
|
let when = self.delay.when + Duration::from_millis(10);
|
|
self.delay = Delay { when };
|
|
self.rem -= 1;
|
|
Poll::Ready(Some(()))
|
|
}
|
|
Poll::Pending => Poll::Pending,
|
|
}
|
|
}
|
|
}*/
|
|
|
|
pub fn new_retry_timer(_max_retry: i32, _base_sleep: Duration, _max_sleep: Duration, _jitter: f64) -> Vec<i32> {
|
|
todo!();
|
|
}
|