pub trait HandleEvent: Debug + Sync + Send {
    fn handle_acquire(&self, event: AcquireEvent) { ... }
    fn handle_release(&self, event: ReleaseEvent) { ... }
    fn handle_checkout(&self, event: CheckoutEvent) { ... }
    fn handle_timeout(&self, event: TimeoutEvent) { ... }
    fn handle_checkin(&self, event: CheckinEvent) { ... }
}
Expand description

A trait which is provided with information about events in a connection pool.

Provided Methods

Called when a new connection is acquired.

The default implementation does nothing.

Called when a connection is released.

The default implementation does nothing.

Called when a connection is checked out from the pool.

The default implementation does nothing.

Called when a checkout attempt times out.

The default implementation does nothing.

Called when a connection is checked back into the pool.

Implementors