Skip to main content

PoolTick

Trait PoolTick 

Source
pub trait PoolTick<B: PoolDriver> {
    // Required method
    fn tick(&mut self, driver: &mut B::Driver);
}

Required Methods§

Source

fn tick(&mut self, driver: &mut B::Driver)

Implementors§

Source§

impl<H, T, C, F, B> PoolTick<B> for Pool<Server<H, T>, C, F, B>
where H: ServerProtocol, T: Transport, C: Codec, F: Profile, B: PoolDriver,

Source§

impl<P, T, S, C, F, B> PoolTick<B> for Pool<Client<P, T, S>, C, F, B>
where P: ClientProtocol, T: Transport, T::Addr: Clone, S: ConnectSource<T>, C: Codec, F: Profile, B: PoolDriver,