Object/Trait

scalaz.effect

MonadCatchIO

Related Docs: trait MonadCatchIO | package effect

Permalink

object MonadCatchIO extends MonadCatchIOFunctions

Source
MonadCatchIO.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MonadCatchIO
  2. MonadCatchIOFunctions
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

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. def apply[M[_]](implicit M: MonadCatchIO[M]): MonadCatchIO[M]

    Permalink
    Annotations
    @inline()
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def bracket[M[_], A, B, C](before: M[A])(after: (A) ⇒ M[B])(during: (A) ⇒ M[C])(implicit arg0: MonadCatchIO[M]): M[C]

    Permalink
    Definition Classes
    MonadCatchIOFunctions
  7. def bracketOnError[M[_], A, B, C](before: M[A])(after: (A) ⇒ M[B])(during: (A) ⇒ M[C])(implicit arg0: MonadCatchIO[M]): M[C]

    Permalink

    A variant of "bracket" that performs the final action only if there was an error.

    A variant of "bracket" that performs the final action only if there was an error.

    Definition Classes
    MonadCatchIOFunctions
  8. def bracket_[M[_], A, B, C](before: M[A])(after: M[B])(during: M[C])(implicit arg0: MonadCatchIO[M]): M[C]

    Permalink

    A variant of "bracket" where the return value of this computation is not needed.

    A variant of "bracket" where the return value of this computation is not needed.

    Definition Classes
    MonadCatchIOFunctions
  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def ensuring[M[_], A, B](ma: M[A], sequel: M[B])(implicit arg0: MonadCatchIO[M]): M[A]

    Permalink

    Like "bracket", but takes only a computation to run afterward.

    Like "bracket", but takes only a computation to run afterward. Generalizes "finally".

    Definition Classes
    MonadCatchIOFunctions
  11. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  13. def except[M[_], A](ma: M[A])(handler: (Throwable) ⇒ M[A])(implicit M: MonadCatchIO[M]): M[A]

    Permalink
    Definition Classes
    MonadCatchIOFunctions
  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. def onException[M[_], A, B](ma: M[A], action: M[B])(implicit arg0: MonadCatchIO[M]): M[A]

    Permalink

    Like "finally", but only performs the final action if there was an exception.

    Like "finally", but only performs the final action if there was an exception.

    Definition Classes
    MonadCatchIOFunctions
  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 MonadCatchIOFunctions

Inherited from AnyRef

Inherited from Any

Ungrouped