final class KeyPoolBuilder[F[_], A, B] extends AnyRef
- Source
- KeyPoolBuilder.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- KeyPoolBuilder
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##(): Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def build: Resource[F, KeyPool[F, A, B]]
- def clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- def doOnCreate(f: (B) => F[Unit]): KeyPoolBuilder[F, A, B]
- def doOnDestroy(f: (B) => F[Unit]): KeyPoolBuilder[F, A, B]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- val idleTimeAllowedInPool: Duration
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val kpCreate: (A) => F[B]
- val kpDefaultReuseState: Reusable
- val kpDestroy: (B) => F[Unit]
- val kpMaxPerKey: (A) => Int
- val kpMaxTotal: Int
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- val onReaperException: (Throwable) => F[Unit]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- def withDefaultReuseState(defaultReuseState: Reusable): KeyPoolBuilder[F, A, B]
- def withIdleTimeAllowedInPool(duration: Duration): KeyPoolBuilder[F, A, B]
- def withMaxPerKey(f: (A) => Int): KeyPoolBuilder[F, A, B]
- def withMaxTotal(total: Int): KeyPoolBuilder[F, A, B]
- def withOnReaperException(f: (Throwable) => F[Unit]): KeyPoolBuilder[F, A, B]