pub struct TokenRotator {
pub jupiter_client: Arc<JupiterClient>,
pub token_list: Arc<Mutex<Vec<Token>>>,
pub last_rotation: Arc<Mutex<Instant>>,
pub rotation_interval: Duration,
pub thread_token_indices: Arc<Mutex<Vec<usize>>>,
pub machine_index: u64,
pub machine_count: u64,
}
Fields§
§jupiter_client: Arc<JupiterClient>
§token_list: Arc<Mutex<Vec<Token>>>
§last_rotation: Arc<Mutex<Instant>>
§rotation_interval: Duration
§thread_token_indices: Arc<Mutex<Vec<usize>>>
§machine_index: u64
§machine_count: u64
Implementations§
source§impl TokenRotator
impl TokenRotator
pub fn new( jupiter_client: Arc<JupiterClient>, rotation_interval_minutes: u64, machine_index: u64, machine_count: u64, ) -> Self
pub async fn initialize(&self) -> Result<()>
pub fn initialize_thread_tokens(&self, thread_count: usize) -> Result<()>
pub fn get_token_for_thread(&self, thread_id: usize) -> Result<Token>
pub fn rotate_token_for_thread(&self, thread_id: usize) -> Result<Token>
Auto Trait Implementations§
impl Freeze for TokenRotator
impl !RefUnwindSafe for TokenRotator
impl Send for TokenRotator
impl Sync for TokenRotator
impl Unpin for TokenRotator
impl !UnwindSafe for TokenRotator
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> 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