trait ConnectionManager[F[_], A <: Connection[F]] extends AnyRef
Type that is responsible for the client lifecycle
The ConnectionManager is a general wrapper around a ConnectionBuilder that can pool resources in order to conserve resources such as socket connections, CPU time, SSL handshakes, etc. Because it can contain significant resources it must have a mechanism to free resources associated with it.
- Source
- ConnectionManager.scala
- Alphabetic
- By Inheritance
- ConnectionManager
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
-
sealed
case class
NextConnection(connection: A, fresh: Boolean) extends Product with Serializable
Bundle of the connection and whether its new or not
Abstract Value Members
-
abstract
def
borrow(requestKey: RequestKey): F[NextConnection]
Get a connection for the provided request key.
-
abstract
def
invalidate(connection: A): F[Unit]
Invalidate a connection, ensuring that its resources are freed.
Invalidate a connection, ensuring that its resources are freed. The connection manager may not return this connection on another borrow.
-
abstract
def
release(connection: A): F[Unit]
Release a connection.
Release a connection. The connection manager may choose to keep the connection for subsequent calls to borrow, or dispose of the connection.
-
abstract
def
shutdown: F[Unit]
Shutdown this client, closing any open connections and freeing resources