Skip to main content

Pool

Struct Pool 

Source
pub struct Pool { /* private fields */ }
Expand description

A fixed-size connection pool with round-robin dispatch.

All slots start disconnected. Call connect_all() for eager startup, or let client() lazily reconnect on demand.

Implementations§

Source§

impl Pool

Source

pub fn new(config: PoolConfig) -> Self

Create a new pool. All slots start disconnected.

Source

pub async fn connect_all(&mut self) -> Result<(), Error>

Eagerly connect all slots. Returns an error if any connection fails.

Source

pub async fn client(&mut self) -> Result<Client, Error>

Get a Client bound to the next healthy connection.

Advances the round-robin cursor and returns a client for a connected slot. Disconnected slots are lazily reconnected. If all slots fail, returns Error::AllConnectionsFailed.

Source

pub fn mark_disconnected(&mut self, conn: ConnCtx)

Mark a connection as dead after a ConnectionClosed error.

Matches by ConnCtx::token() and sets the slot to disconnected. The next client() call will lazily reconnect.

Source

pub fn close_all(&mut self)

Close all connections and reset slots to disconnected.

Source

pub fn connected_count(&self) -> usize

Number of currently connected slots.

Source

pub fn pool_size(&self) -> usize

Total number of slots in the pool.

Auto Trait Implementations§

§

impl Freeze for Pool

§

impl RefUnwindSafe for Pool

§

impl Send for Pool

§

impl Sync for Pool

§

impl Unpin for Pool

§

impl UnsafeUnpin for Pool

§

impl UnwindSafe for Pool

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.