Packages

c

korolev.effect.Effect

FutureEffect

class FutureEffect extends Effect[Future]

Linear Supertypes
Effect[Future], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FutureEffect
  2. Effect
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new FutureEffect()

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. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  6. def delay[A](value: ⇒ A): Future[A]
    Definition Classes
    FutureEffectEffect
  7. def delayAsync[A](value: ⇒ Future[A]): Future[A]
    Definition Classes
    Effect
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  10. def fail[A](e: Throwable): Future[A]
    Definition Classes
    FutureEffectEffect
  11. def flatMap[A, B](m: Future[A])(f: (A) ⇒ Future[B]): Future[B]
    Definition Classes
    FutureEffectEffect
  12. def fork[A](m: ⇒ Future[A])(implicit ec: ExecutionContext): Future[A]

    Keep in mind that when F has strict semantic, effect should created inside 'fork()' brackets.

    Keep in mind that when F has strict semantic, effect should created inside 'fork()' brackets.

    Definition Classes
    FutureEffectEffect
  13. def fromTry[A](value: ⇒ Try[A]): Future[A]
    Definition Classes
    FutureEffectEffect
  14. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. def map[A, B](m: Future[A])(f: (A) ⇒ B): Future[B]
    Definition Classes
    FutureEffectEffect
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. def never[T]: Future[T]
    Definition Classes
    FutureEffectEffect
  20. def none[A]: Future[Option[A]]
    Definition Classes
    Effect
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. def promise[A](cb: ((Either[Throwable, A]) ⇒ Unit) ⇒ Unit): Future[A]
    Definition Classes
    FutureEffectEffect
  24. def promiseF[A](cb: ((Either[Throwable, A]) ⇒ Unit) ⇒ Future[Unit]): Future[A]
    Definition Classes
    FutureEffectEffect
  25. def pure[A](value: A): Future[A]
    Definition Classes
    FutureEffectEffect
  26. def recover[A, AA >: A](m: Future[A])(f: PartialFunction[Throwable, AA]): Future[AA]
    Definition Classes
    FutureEffectEffect
  27. def recoverF[A, AA >: A](m: Future[A])(f: PartialFunction[Throwable, Future[AA]]): Future[AA]
    Definition Classes
    FutureEffectEffect
  28. def run[A](m: Future[A]): Either[Throwable, A]
    Definition Classes
    FutureEffectEffect
  29. def runAsync[A](m: Future[A])(f: (Either[Throwable, A]) ⇒ Unit): Unit
    Definition Classes
    FutureEffectEffect
  30. def sequence[A](in: List[Future[A]]): Future[List[A]]

    Keep in mind that when F has strict semantic, effect should created inside 'start()' brackets.

    Keep in mind that when F has strict semantic, effect should created inside 'start()' brackets.

    Definition Classes
    FutureEffectEffect
  31. def start[A](create: ⇒ Future[A])(implicit ec: ExecutionContext): Future[Fiber[Future, A]]

    Keep in mind that when F has strict semantic, effect should created inside 'start()' brackets.

    Keep in mind that when F has strict semantic, effect should created inside 'start()' brackets.

    Definition Classes
    FutureEffectEffect
  32. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  33. def toFuture[A](m: Future[A]): Future[A]
    Definition Classes
    FutureEffectEffect
  34. def toString(): String
    Definition Classes
    AnyRef → Any
  35. val unit: Future[Unit]
    Definition Classes
    FutureEffectEffect
  36. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  38. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

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

Inherited from Effect[Future]

Inherited from AnyRef

Inherited from Any

Ungrouped