Struct benjamin_arbitrage_bot::rate_limiter::RateLimiter
source · pub struct RateLimiter {Show 13 fields
pub request_count: Arc<Mutex<u32>>,
pub last_reset_time: Arc<Mutex<Instant>>,
pub is_rate_limited: Arc<Mutex<bool>>,
pub current_delay: Arc<Mutex<u64>>,
pub max_requests_per_minute: u32,
pub min_interval_ms: u64,
pub thread_call_counts: Arc<Mutex<HashMap<usize, u32>>>,
pub last_log_time: Arc<Mutex<Instant>>,
pub endpoint_counts: Arc<Mutex<HashMap<String, u32>>>,
pub thread_rate_limited: Arc<Mutex<HashSet<usize>>>,
pub backoff_threads: Arc<Mutex<HashMap<usize, Instant>>>,
pub backoff_duration: Arc<Mutex<u64>>,
pub api_level: Arc<Mutex<u64>>,
}
Fields§
§request_count: Arc<Mutex<u32>>
§last_reset_time: Arc<Mutex<Instant>>
§is_rate_limited: Arc<Mutex<bool>>
§current_delay: Arc<Mutex<u64>>
§max_requests_per_minute: u32
§min_interval_ms: u64
§thread_call_counts: Arc<Mutex<HashMap<usize, u32>>>
§last_log_time: Arc<Mutex<Instant>>
§endpoint_counts: Arc<Mutex<HashMap<String, u32>>>
§thread_rate_limited: Arc<Mutex<HashSet<usize>>>
§backoff_threads: Arc<Mutex<HashMap<usize, Instant>>>
§backoff_duration: Arc<Mutex<u64>>
§api_level: Arc<Mutex<u64>>
Implementations§
source§impl RateLimiter
impl RateLimiter
pub fn new(min_interval_ms: u64, max_requests_per_minute: u32) -> Self
pub fn is_in_backoff(&self, thread_id: usize) -> bool
pub fn get_backoff_delay(&self) -> u64
pub fn handle_rate_limit_error(&self, thread_id: usize)
pub fn set_api_level(&self, level: u64)
pub fn increment_request_count_for_thread( &self, thread_id: usize, endpoint: Option<&str>, ) -> bool
pub fn get_current_delay_for_main_loop(&self) -> u64
pub fn get_current_delay(&self) -> u64
pub fn is_limited(&self) -> bool
pub fn reset(&self)
pub fn get_thread_stats(&self) -> Vec<(usize, u32)>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RateLimiter
impl RefUnwindSafe for RateLimiter
impl Send for RateLimiter
impl Sync for RateLimiter
impl Unpin for RateLimiter
impl UnwindSafe for RateLimiter
Blanket Implementations§
source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more