LargeObjectInterpreter

doobie.postgres.free.KleisliInterpreter.LargeObjectInterpreter
trait LargeObjectInterpreter extends Visitor[[_] =>> Kleisli[M, LargeObject, _$73]]

Attributes

Source
kleisliinterpreter.scala
Graph
Supertypes
trait Visitor[[_] =>> Kleisli[M, LargeObject, _$73]]
trait FunctionK[LargeObjectOp, [_] =>> Kleisli[M, LargeObject, _$73]]
trait Serializable
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

override def canceled: Kleisli[M, LargeObject, Unit]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def close: Kleisli[M, LargeObject, Unit]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def copy: Kleisli[M, LargeObject, LargeObject]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def delay[A](thunk: => A): Kleisli[M, LargeObject, A]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def embed[A](e: Embedded[A]): Kleisli[M, LargeObject, A]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def forceR[A, B](fa: LargeObjectIO[A])(fb: LargeObjectIO[B]): Kleisli[M, LargeObject, B]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def fromFuture[A](fut: LargeObjectIO[Future[A]]): Kleisli[M, LargeObject, A]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def fromFutureCancelable[A](fut: LargeObjectIO[(Future[A], LargeObjectIO[Unit])]): Kleisli[M, LargeObject, A]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def getInputStream: Kleisli[M, LargeObject, InputStream]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def getInputStream(a: Long): Kleisli[M, LargeObject, InputStream]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def getLongOID: Kleisli[M, LargeObject, Long]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def getOutputStream: Kleisli[M, LargeObject, OutputStream]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def handleErrorWith[A](fa: LargeObjectIO[A])(f: Throwable => LargeObjectIO[A]): Kleisli[M, LargeObject, A]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def monotonic: Kleisli[M, LargeObject, FiniteDuration]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def onCancel[A](fa: LargeObjectIO[A], fin: LargeObjectIO[Unit]): Kleisli[M, LargeObject, A]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def performLogging(event: LogEvent): Kleisli[M, LargeObject, Unit]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def poll[A](poll: Any, fa: LargeObjectIO[A]): Kleisli[M, LargeObject, A]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def raiseError[A](e: Throwable): Kleisli[M, LargeObject, A]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def raw[A](f: LargeObject => A): Kleisli[M, LargeObject, A]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def read(a: Array[Byte], b: Int, c: Int): Kleisli[M, LargeObject, Int]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def read(a: Int): Kleisli[M, LargeObject, Array[Byte]]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def realTime: Kleisli[M, LargeObject, FiniteDuration]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def seek(a: Int): Kleisli[M, LargeObject, Unit]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def seek(a: Int, b: Int): Kleisli[M, LargeObject, Unit]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def seek64(a: Long, b: Int): Kleisli[M, LargeObject, Unit]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def size: Kleisli[M, LargeObject, Int]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def size64: Kleisli[M, LargeObject, Long]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def suspend[A](hint: Type)(thunk: => A): Kleisli[M, LargeObject, A]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def tell: Kleisli[M, LargeObject, Int]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def tell64: Kleisli[M, LargeObject, Long]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def truncate(a: Int): Kleisli[M, LargeObject, Unit]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def truncate64(a: Long): Kleisli[M, LargeObject, Unit]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def uncancelable[A](body: Poll[LargeObjectIO] => LargeObjectIO[A]): Kleisli[M, LargeObject, A]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def write(a: Array[Byte]): Kleisli[M, LargeObject, Unit]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def write(a: Array[Byte], b: Int, c: Int): Kleisli[M, LargeObject, Unit]

Attributes

Definition Classes
Source
kleisliinterpreter.scala

Inherited methods

def and[H[_]](h: FunctionK[LargeObjectOp, 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[[_] =>> Kleisli[M, LargeObject, _$73], 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
final def apply[A](fa: LargeObjectOp[A]): F[A]

Applies this functor transformation from F to G

Applies this functor transformation from F to G

Attributes

Inherited from:
Visitor
Source
largeobject.scala

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

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, [_] =>> Kleisli[M, LargeObject, _$73]]): 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