Packages

trait WithDefaults[F[_]] extends Dispatch[F] with Effect.WithDefaults[F]

Linear Supertypes
Effect.WithDefaults[F], Dispatch[F], Effect[F], Monad[F], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. WithDefaults
  2. WithDefaults
  3. Dispatch
  4. Effect
  5. Monad
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def delay[A](a: => A): F[A]
    Definition Classes
    Effect
  2. abstract def dispatch[A](fa: F[A]): Unit

    Fire and forget, could be sync or async

    Fire and forget, could be sync or async

    Definition Classes
    Dispatch
  3. abstract def finallyRun[A, B](fa: => F[A], runFinally: => F[B]): F[A]

    Wraps this callback in a try-finally block and runs the given callback in the finally clause, after the current callback completes, be it in error or success.

    Wraps this callback in a try-finally block and runs the given callback in the finally clause, after the current callback completes, be it in error or success.

    Definition Classes
    Effect
  4. abstract def flatMap[A, B](fa: F[A])(f: (A) => F[B]): F[B]
    Definition Classes
    Monad
  5. abstract def handleError[A, AA >: A](fa: => F[A])(f: (Throwable) => F[AA]): F[AA]
    Definition Classes
    Effect
  6. abstract def map[A, B](fa: F[A])(f: (A) => B): F[B]
    Definition Classes
    Monad
  7. abstract def pure[A](a: A): F[A]
    Definition Classes
    Monad
  8. abstract def suspend[A](fa: => F[A]): F[A]
    Definition Classes
    Effect
  9. abstract def tailrec[A, B](a: A)(f: (A) => F[Either[A, B]]): F[B]
    Definition Classes
    Monad

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. final def chain[A, B, C, D](fa: F[A], fb: F[B], fc: F[C], fd: F[D]): F[D]
    Definition Classes
    Monad
    Annotations
    @inline()
  6. final def chain[A, B, C](fa: F[A], fb: F[B], fc: F[C]): F[C]
    Definition Classes
    Monad
    Annotations
    @inline()
  7. def chain[A, B](fa: F[A], fb: F[B]): F[B]
    Definition Classes
    Monad
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  9. def dispatchFn[A](fa: => F[A]): Function0[Unit]
    Definition Classes
    WithDefaultsDispatch
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  12. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  18. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  19. final def throwException[A](t: Throwable): F[A]
    Definition Classes
    Effect
    Annotations
    @inline()
  20. def toString(): String
    Definition Classes
    AnyRef → Any
  21. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  22. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  23. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from Effect.WithDefaults[F]

Inherited from Dispatch[F]

Inherited from Effect[F]

Inherited from Monad[F]

Inherited from AnyRef

Inherited from Any

Ungrouped