Packages

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
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ConnectionManager
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. 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

  1. abstract def borrow(requestKey: RequestKey): F[NextConnection]

    Get a connection for the provided request key.

  2. 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.

  3. 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.

  4. abstract def shutdown: F[Unit]

    Shutdown this client, closing any open connections and freeing resources