Object

monix.execution

FutureUtils

Related Doc: package execution

Permalink

object FutureUtils

Utilities for Scala's standard concurrent.Future.

Source
FutureUtils.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FutureUtils
  2. AnyRef
  3. 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. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def delayedResult[T](delay: FiniteDuration)(result: ⇒ T)(implicit s: Scheduler): Future[T]

    Permalink

    Creates a future that completes with the specified result, but only after the specified delay.

  7. def dematerialize[T](source: Future[Try[T]])(implicit ec: ExecutionContext): Future[T]

    Permalink

    Utility that transforms a Future[Try[T]] into a Future[T], hiding errors, being the opposite of materialize.

  8. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  10. object extensions

    Permalink

    Provides extension methods for Future.

  11. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  13. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  14. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  15. def materialize[T](source: Future[T])(implicit ec: ExecutionContext): Future[Try[T]]

    Permalink

    Utility that lifts a Future[T] into a Future[Try[T]], exposing error explicitly.

  16. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  17. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  20. def timeout[T](source: Future[T], atMost: FiniteDuration)(implicit s: Scheduler): Future[T]

    Permalink

    Utility that returns a new Future that either completes with the original Future's result or with a TimeoutException in case the maximum wait time was exceeded.

    Utility that returns a new Future that either completes with the original Future's result or with a TimeoutException in case the maximum wait time was exceeded.

    atMost

    specifies the maximum wait time until the future is terminated with a TimeoutException

    s

    is the Scheduler, needed for completing our internal promise

    returns

    a new future that will either complete with the result of our source or fail in case the timeout is reached.

  21. def timeoutTo[T](source: Future[T], atMost: FiniteDuration, fallback: ⇒ Future[T])(implicit s: Scheduler): Future[T]

    Permalink

    Utility that returns a new Future that either completes with the original Future's result or after the timeout specified by atMost it tries to complete with the given fallback.

    Utility that returns a new Future that either completes with the original Future's result or after the timeout specified by atMost it tries to complete with the given fallback. Whatever Future finishes first after the timeout, will win.

    atMost

    specifies the maximum wait time until the future is terminated with a TimeoutException

    fallback

    the fallback future that gets triggered after timeout

    s

    is the Scheduler, needed for completing our internal promise

    returns

    a new future that will either complete with the result of our source or with the fallback in case the timeout is reached

  22. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  23. def transform[T, S](source: Future[T], f: (Try[T]) ⇒ Try[S])(implicit ec: ExecutionContext): Future[S]

    Permalink

    Given a mapping functions that operates on successful results as well as errors, transforms the source by applying it.

    Given a mapping functions that operates on successful results as well as errors, transforms the source by applying it.

    Similar to Future.transform from Scala 2.12.

  24. def transformWith[T, S](source: Future[T], f: (Try[T]) ⇒ Future[S])(implicit ec: ExecutionContext): Future[S]

    Permalink

    Given a mapping functions that operates on successful results as well as errors, transforms the source by applying it.

    Given a mapping functions that operates on successful results as well as errors, transforms the source by applying it.

    Similar to Future.transformWith from Scala 2.12.

  25. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped