doobie.free

ref

object ref

Algebra and free monad for primitive operations over a java.sql.Ref. This is a low-level API that exposes lifecycle-managed JDBC objects directly and is intended mainly for library developers. End users will prefer a safer, higher-level API such as that provided in the doobie.hi package.

RefIO is a free monad that must be run via an interpreter, most commonly via natural transformation of its underlying algebra RefOp to another monad via Free#foldMap.

The library provides a natural transformation to Kleisli[M, Ref, A] for any exception-trapping (Catchable) and effect-capturing (Capture) monad M. Such evidence is provided for Task, IO, and stdlib Future; and transK[M] is provided as syntax.

// An action to run
val a: RefIO[Foo] = ...

// A JDBC object
val s: Ref = ...

// Unfolding into a Task
val ta: Task[A] = a.transK[Task].run(s)
Source
ref.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Grouped
  2. Alphabetic
  3. By inheritance
Inherited
  1. ref
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. type RefIO[A] = Free[RefOp, A]

    Free monad over a free functor of RefOp; abstractly, a computation that consumes a java.sql.Ref and produces a value of type A.

  2. implicit class RefIOOps[A] extends AnyRef

    Syntax for RefIO.

  3. sealed trait RefOp[A] extends AnyRef

    Sum type of primitive operations over a java.sql.Ref.

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. implicit val CaptureRefIO: Capture[RefIO]

    Capture instance for RefIO.

  7. implicit val CatchableRefIO: Catchable[RefIO]

    Catchable instance for RefIO.

  8. object RefOp

    Module of constructors for RefOp.

  9. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  10. def attempt[A](a: RefIO[A]): RefIO[\/[Throwable, A]]

    Lift a RefIO[A] into an exception-capturing RefIO[Throwable \/ A].

  11. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. def delay[A](a: ⇒ A): RefIO[A]

    Non-strict unit for capturing effects.

  13. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  15. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. val getBaseTypeName: RefIO[String]

  17. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  18. def getObject(a: Map[String, Class[_]]): RefIO[AnyRef]

  19. val getObject: RefIO[AnyRef]

  20. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  21. def interpK[M[_]](implicit arg0: Monad[M], arg1: Catchable[M], arg2: Capture[M]): ~>[RefOp, [γ]Kleisli[M, Ref, γ]]

    Natural transformation from RefOp to Kleisli for the given M, consuming a java.sql.Ref.

  22. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  23. def lift[Op[_], A, J](j: J, action: Free[Op, A])(implicit mod: Aux[Op, J]): RefIO[A]

    Lift a different type of program that has a default Kleisli interpreter.

  24. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  25. final def notify(): Unit

    Definition Classes
    AnyRef
  26. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  27. def raw[A](f: (Ref) ⇒ A): RefIO[A]

    Backdoor for arbitrary computations on the underlying Ref.

  28. def setObject(a: AnyRef): RefIO[Unit]

  29. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  30. def toString(): String

    Definition Classes
    AnyRef → Any
  31. def trans[M[_]](c: Ref)(implicit arg0: Monad[M], arg1: Catchable[M], arg2: Capture[M]): ~>[RefIO, M]

    Natural transformation from RefIO to M, given a java.sql.Ref.

  32. def transK[M[_]](implicit arg0: Monad[M], arg1: Catchable[M], arg2: Capture[M]): ~>[RefIO, [γ]Kleisli[M, Ref, γ]]

    Natural transformation from RefIO to Kleisli for the given M, consuming a java.sql.Ref.

  33. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Algebra

Constructors (Lifting)

Constructors (Primitives)

Typeclass Instances

Ungrouped