Object

com.thoughtworks.raii

covariant

Related Doc: package raii

Permalink

object covariant extends CovariantResourceTInstances0

The namespace that contains the covariant ResourceT.

Usage:

import com.thoughtworks.raii.covariant._
Source
covariant.scala
Linear Supertypes
CovariantResourceTInstances0, CovariantResourceTInstances1, CovariantResourceTInstances2, CovariantResourceTInstances3, AnyRef, Any
Ordering
  1. Grouped
  2. Alphabetic
  3. By Inheritance
Inherited
  1. covariant
  2. CovariantResourceTInstances0
  3. CovariantResourceTInstances1
  4. CovariantResourceTInstances2
  5. CovariantResourceTInstances3
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. implicit final class CovariantResourceTOps[F[+_], A] extends AnyRef

    Permalink
  2. trait Releasable[F[+_], +A] extends AnyRef

    Permalink

    A container of a value and a function to release the value.

    A container of a value and a function to release the value.

    F

    the monadic type of release

    A

    the type of value

  3. type ResourceT[F[+_], +A] = covariant.OpacityTypes.ResourceT[F, A]

    Permalink

    The data structure that provides automatic resource management.

    The data structure that provides automatic resource management.

    Example:
    1. ResourceT can be used as a monad transformer for scalaz.Name

      import scalaz.Name
      import com.thoughtworks.raii.covariant._
      type RAII[A] = ResourceT[Name, A]

      Given a resource that creates temporary files

      import java.io.File
      val resource: RAII[File] = ResourceT(Name(new Releasable[Name, File] {
        override val value: File = File.createTempFile("test", ".tmp");
        override val release: Name[Unit] = Name {
          val isDeleted = value.delete()
        }
      }))

      when using temporary file created by resouce in a for / yield block, those temporary files should be available.

      import scalaz.syntax.all._
      val usingResouce = for {
        tmpFile1 <- resource
        tmpFile2 <- resource
      } yield {
        tmpFile1 shouldNot be(tmpFile2)
        tmpFile1 should exist
        tmpFile2 should exist
        (tmpFile1, tmpFile2)
      }

      and those files should have been deleted after the for / yield block.

      val (tmpFile1, tmpFile2) = usingResouce.run.value
      tmpFile1 shouldNot exist
      tmpFile2 shouldNot exist
    Note

    This ResourceT type is an opacity alias to F[Releasable[F, A]]. All type classes and helper functions for this ResourceT type are defined in the companion object ResourceT

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. object ResourceT

    Permalink

    The companion object of ResourceT that contains converters and type classes.

    The companion object of ResourceT that contains converters and type classes.

    Note

    There are some implicit method that provides scalaz.Monads as monad transformers of F. Those monads running will collect all resources, which will be open and release altogether when run is called.

  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. implicit def covariantResourceTApplicative[F[+_]](implicit arg0: Applicative[F]): Applicative[[β$0$]covariant.OpacityTypes.ResourceT[F, β$0$]]

    Permalink

    Definition Classes
    CovariantResourceTInstances3
  8. implicit def covariantResourceTMonad[F[+_]](implicit arg0: Monad[F]): Monad[[β$1$]covariant.OpacityTypes.ResourceT[F, β$1$]]

    Permalink

    Definition Classes
    CovariantResourceTInstances2
  9. implicit def covariantResourceTMonadError[F[+_], S](implicit F0: MonadError[F, S]): MonadError[[β$3$]covariant.OpacityTypes.ResourceT[F, β$3$], S]

    Permalink

    Definition Classes
    CovariantResourceTInstances0
  10. implicit def covariantResourceTNondeterminism[F[+_]](implicit F0: Nondeterminism[F]): Nondeterminism[[β$2$]covariant.OpacityTypes.ResourceT[F, β$2$]]

    Permalink

    Definition Classes
    CovariantResourceTInstances1
  11. implicit def covariantResourceTParallelApplicative[F[+_]](implicit F0: Applicative[[A]AnyRef { ... /* 2 definitions in type refinement */ }]): Applicative[[A]AnyRef { ... /* 2 definitions in type refinement */ }]

    Permalink

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

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  16. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  17. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  18. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  19. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  20. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  21. val opacityTypes: OpacityTypes

    Permalink

    The type-level Pimpl in order to prevent the Scala compiler seeing the actual type of ResourceT

    The type-level Pimpl in order to prevent the Scala compiler seeing the actual type of ResourceT

    Note

    For internal usage only.

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

    Permalink
    Definition Classes
    AnyRef
  23. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  24. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from CovariantResourceTInstances0

Inherited from CovariantResourceTInstances1

Inherited from CovariantResourceTInstances2

Inherited from CovariantResourceTInstances3

Inherited from AnyRef

Inherited from Any

Type classes

Ungrouped