pub struct LeaderTpuService { /* private fields */ }
Expand description
Service that tracks upcoming leaders and maintains an up-to-date mapping of leader id to TPU socket address.
Implementations§
Source§impl LeaderTpuService
impl LeaderTpuService
pub async fn new( rpc_client: Arc<RpcClient>, websocket_url: &str, protocol: Protocol, exit: Arc<AtomicBool>, ) -> Result<Self>
pub async fn join(&mut self)
pub fn estimated_current_slot(&self) -> Slot
pub fn unique_leader_tpu_sockets(&self, fanout_slots: u64) -> Vec<SocketAddr>
pub fn leader_tpu_sockets(&self, fanout_slots: u64) -> Vec<SocketAddr>
Auto Trait Implementations§
impl Freeze for LeaderTpuService
impl RefUnwindSafe for LeaderTpuService
impl Send for LeaderTpuService
impl Sync for LeaderTpuService
impl Unpin for LeaderTpuService
impl UnwindSafe for LeaderTpuService
Blanket Implementations§
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