Class

com.avsystem.commons.SharedExtensions

FutureOps

Related Doc: package SharedExtensions

Permalink

final class FutureOps[A] extends AnyVal

Linear Supertypes
AnyVal, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FutureOps
  2. AnyVal
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new FutureOps(fut: commons.Future[A])

    Permalink

Value Members

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

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

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

    Permalink
    Definition Classes
    Any
  4. def andThenNow[U](pf: PartialFunction[commons.Try[A], U]): commons.Future[A]

    Permalink
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def collectNow[B](pf: PartialFunction[A, B]): commons.Future[B]

    Permalink
  7. def filterNow(p: (A) ⇒ Boolean): commons.Future[A]

    Permalink
  8. def flatMapNow[B](f: (A) ⇒ commons.Future[B]): commons.Future[B]

    Permalink

    FlatMaps a Future using RunNowEC.

  9. def foreachNow[U](f: (A) ⇒ U): Unit

    Permalink
  10. def getClass(): Class[_ <: AnyVal]

    Permalink
    Definition Classes
    AnyVal → Any
  11. def ignoreFailures: commons.Future[Unit]

    Permalink

    Returns a Future that completes successfully, but only after this future completes.

  12. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  13. def mapNow[B](f: (A) ⇒ B): commons.Future[B]

    Permalink

    Maps a Future using RunNowEC.

  14. def onCompleteNow[U](f: (commons.Try[A]) ⇒ U): Unit

    Permalink
  15. def recoverNow[U >: A](pf: PartialFunction[Throwable, U]): commons.Future[U]

    Permalink
  16. def recoverWithNow[B >: A](pf: PartialFunction[Throwable, commons.Future[B]]): commons.Future[B]

    Permalink
  17. def thenReturn[T](result: commons.Future[T]): commons.Future[T]

    Permalink

    Returns a Future that completes with the specified result, but only after this future completes.

  18. def toString(): String

    Permalink
    Definition Classes
    Any
  19. def toUnit: commons.Future[Unit]

    Permalink
  20. def toVoid: commons.Future[Void]

    Permalink
  21. def transformNow[S](f: (commons.Try[A]) ⇒ commons.Try[S]): commons.Future[S]

    Permalink
  22. def transformNow[S](s: (A) ⇒ S, f: (Throwable) ⇒ Throwable): commons.Future[S]

    Permalink
  23. def transformWithNow[S](f: (commons.Try[A]) ⇒ commons.Future[S]): commons.Future[S]

    Permalink
  24. def wrapToTry: commons.Future[commons.Try[A]]

    Permalink
  25. def zipWithNow[B, R](that: commons.Future[B])(f: (A, B) ⇒ R): commons.Future[R]

    Permalink

Inherited from AnyVal

Inherited from Any

Ungrouped