Visitor

doobie.postgres.free.pgconnection$.PGConnectionOp$.Visitor
trait Visitor[F[_]] extends FunctionK[PGConnectionOp, F]

Attributes

Source:
pgconnection.scala
Graph
Supertypes
trait FunctionK[PGConnectionOp, F]
trait Serializable
class Object
trait Matchable
class Any
Known subtypes

Members list

Concise view

Value members

Abstract methods

def addDataType(a: String, b: Class[_ <: PGobject]): F[Unit]

Attributes

Source:
pgconnection.scala
def cancelQuery: F[Unit]

Attributes

Source:
pgconnection.scala
def canceled: F[Unit]

Attributes

Source:
pgconnection.scala
def createArrayOf(a: String, b: AnyRef): F[Array]

Attributes

Source:
pgconnection.scala
def delay[A](thunk: => A): F[A]

Attributes

Source:
pgconnection.scala
def embed[A](e: Embedded[A]): F[A]

Attributes

Source:
pgconnection.scala
def escapeIdentifier(a: String): F[String]

Attributes

Source:
pgconnection.scala
def escapeLiteral(a: String): F[String]

Attributes

Source:
pgconnection.scala
def forceR[A, B](fa: PGConnectionIO[A])(fb: PGConnectionIO[B]): F[B]

Attributes

Source:
pgconnection.scala
def getAdaptiveFetch: F[Boolean]

Attributes

Source:
pgconnection.scala
def getAutosave: F[AutoSave]

Attributes

Source:
pgconnection.scala
def getBackendPID: F[Int]

Attributes

Source:
pgconnection.scala
def getCopyAPI: F[CopyManager]

Attributes

Source:
pgconnection.scala

Attributes

Source:
pgconnection.scala
def getLargeObjectAPI: F[LargeObjectManager]

Attributes

Source:
pgconnection.scala
def getNotifications: F[Array[PGNotification]]

Attributes

Source:
pgconnection.scala
def getNotifications(a: Int): F[Array[PGNotification]]

Attributes

Source:
pgconnection.scala
def getParameterStatus(a: String): F[String]

Attributes

Source:
pgconnection.scala
def getParameterStatuses: F[Map[String, String]]

Attributes

Source:
pgconnection.scala
def getPreferQueryMode: F[PreferQueryMode]

Attributes

Source:
pgconnection.scala

Attributes

Source:
pgconnection.scala
def getReplicationAPI: F[PGReplicationConnection]

Attributes

Source:
pgconnection.scala
def handleErrorWith[A](fa: PGConnectionIO[A])(f: Throwable => PGConnectionIO[A]): F[A]

Attributes

Source:
pgconnection.scala
def monotonic: F[FiniteDuration]

Attributes

Source:
pgconnection.scala
def onCancel[A](fa: PGConnectionIO[A], fin: PGConnectionIO[Unit]): F[A]

Attributes

Source:
pgconnection.scala
def poll[A](poll: Any, fa: PGConnectionIO[A]): F[A]

Attributes

Source:
pgconnection.scala
def raiseError[A](e: Throwable): F[A]

Attributes

Source:
pgconnection.scala
def raw[A](f: PGConnection => A): F[A]

Attributes

Source:
pgconnection.scala
def realTime: F[FiniteDuration]

Attributes

Source:
pgconnection.scala
def setAdaptiveFetch(a: Boolean): F[Unit]

Attributes

Source:
pgconnection.scala
def setAutosave(a: AutoSave): F[Unit]

Attributes

Source:
pgconnection.scala
def setDefaultFetchSize(a: Int): F[Unit]

Attributes

Source:
pgconnection.scala
def setPrepareThreshold(a: Int): F[Unit]

Attributes

Source:
pgconnection.scala
def suspend[A](hint: Type)(thunk: => A): F[A]

Attributes

Source:
pgconnection.scala
def uncancelable[A](body: Poll[PGConnectionIO] => PGConnectionIO[A]): F[A]

Attributes

Source:
pgconnection.scala

Concrete methods

final def apply[A](fa: PGConnectionOp[A]): F[A]

Applies this functor transformation from F to G

Applies this functor transformation from F to G

Attributes

Source:
pgconnection.scala

Inherited methods

def and[H[_]](h: FunctionK[PGConnectionOp, H]): FunctionK[F, [_] =>> Tuple2K[G, H, _$9]]

Composes two instances of FunctionK into a new FunctionK that transforms one single functor to a cats.data.Tuple2K of two functors.

Composes two instances of FunctionK into a new FunctionK that transforms one single functor to a cats.data.Tuple2K of two functors.

scala> import cats.arrow.FunctionK
scala> val list2option = λ[FunctionK[List, Option]](_.headOption)
scala> val list2vector = λ[FunctionK[List, Vector]](_.toVector)
scala> val optionAndVector = list2option and list2vector
scala> optionAndVector(List(1,2,3))
res0: cats.data.Tuple2K[Option,Vector,Int] = Tuple2K(Some(1),Vector(1, 2, 3))

Attributes

Inherited from:
FunctionK
Source:
FunctionK.scala
def andThen[H[_]](f: FunctionK[F, H]): FunctionK[F, H]

Composes two instances of FunctionK into a new FunctionK with this transformation applied first.

Composes two instances of FunctionK into a new FunctionK with this transformation applied first.

Attributes

Inherited from:
FunctionK
Source:
FunctionK.scala
def compose[E[_]](f: FunctionK[E, PGConnectionOp]): FunctionK[E, G]

Composes two instances of FunctionK into a new FunctionK with this transformation applied last.

Composes two instances of FunctionK into a new FunctionK with this transformation applied last.

Attributes

Inherited from:
FunctionK
Source:
FunctionK.scala
def narrow[F0 <: (PGConnectionOp)]: FunctionK[F0, G]

Narrows the input type of this FunctionK from F to F0

Narrows the input type of this FunctionK from F to F0

Attributes

Inherited from:
FunctionK
Source:
FunctionK.scala
def or[H[_]](h: FunctionK[H, F]): FunctionK[[_] =>> EitherK[F, H, _$6], G]

Composes two instances of FunctionK into a new FunctionK that transforms a cats.data.EitherK to a single functor.

Composes two instances of FunctionK into a new FunctionK that transforms a cats.data.EitherK to a single functor.

This transformation will be used to transform left F values while h will be used to transform right H values.

Attributes

Inherited from:
FunctionK
Source:
FunctionK.scala
def widen[G0[x]]: FunctionK[F, G0]

Widens the output type of this FunctionK from G to G0

Widens the output type of this FunctionK from G to G0

Attributes

Inherited from:
FunctionK
Source:
FunctionK.scala