Packages

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

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

Abstract Value Members

  1. abstract def async[A](f: Untyped[A]): F[A]
    Definition Classes
    Async
  2. abstract def async_(onCompletion: (Sync.Untyped[Unit]) => Sync.Untyped[Unit]): F[Unit]
    Definition Classes
    Async
  3. abstract def delay[A](a: => A): F[A]
    Definition Classes
    Monad
  4. 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
    Async
  5. abstract def flatMap[A, B](fa: F[A])(f: (A) => F[B]): F[B]
    Definition Classes
    Monad
  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 runAsync[A](fa: => F[A]): Untyped[A]
    Definition Classes
    Async

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 dispatch[A](fa: F[A]): Unit

    Fire and forget, could be sync or async

    Fire and forget, could be sync or async

    Definition Classes
    WithDefaultsDispatch
  10. def dispatchFn[A](fa: => F[A]): Function0[Unit]
    Definition Classes
    WithDefaultsDispatch
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  13. def first[A](f: Untyped[A]): F[A]
    Definition Classes
    WithDefaultsAsync
  14. def fromJsPromise[A](pa: => Thenable[A]): F[A]
    Definition Classes
    WithDefaultsAsync
  15. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. final def subst[G[_], X[_[_]]](xg: X[G])(xf: => X[F])(implicit g: Async[G]): X[F]
    Definition Classes
    Async
  22. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  23. def toJsPromise[A](fa: => F[A]): () => Promise[A]
    Definition Classes
    WithDefaultsAsync
  24. def toString(): String
    Definition Classes
    AnyRef → Any
  25. final def transAsync[G[_], A](ga: => G[A])(implicit g: Async[G]): F[A]
    Definition Classes
    Async
  26. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  28. 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 Dispatch.WithDefaults[F]

Inherited from Async[F]

Inherited from Dispatch[F]

Inherited from Monad[F]

Inherited from AnyRef

Inherited from Any

Ungrouped