Class/Object

monix.execution

CancelablePromise

Related Docs: object CancelablePromise | package execution

Permalink

sealed abstract class CancelablePromise[A] extends Promise[A]

CancelablePromise is a scala.concurrent.Promise implementation that allows listeners to unsubscribe from receiving future results.

It does so by:

Being able to unsubscribe listeners helps with avoiding memory leaks in case of listeners or futures that are being timed-out due to promises that take a long time to complete.

See also

future

subscribe

Linear Supertypes
Promise[A], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CancelablePromise
  2. Promise
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def future: CancelableFuture[A]

    Permalink

    Returns a future that can unsubscribe from this promise's notifications via cancelation.

    Returns a future that can unsubscribe from this promise's notifications via cancelation.

    val promise = CancelablePromise[Int]()
    
    val future1 = promise.future
    val future2 = promise.future
    
    for (r <- future1) println(s"Future1 completed with: $$r")
    for (r <- future2) println(s"Future2 completed with: $$r")
    
    // Unsubscribing from the future notification, but only for future1
    future1.cancel()
    
    // Completing our promise
    promise.success(99)
    
    //=> Future2 completed with: 99

    Note that in the above example future1 becomes non-terminating after cancellation. By unsubscribing its listener, it will never complete.

    This helps with avoiding memory leaks for futures that are being timed-out due to promises that take a long time to complete.

    Definition Classes
    CancelablePromise → Promise
  2. abstract def isCompleted: Boolean

    Permalink
    Definition Classes
    Promise
  3. abstract def subscribe(cb: (Try[A]) ⇒ Unit): Cancelable

    Permalink

    Low-level subscription method that registers a callback to be called when this promise will complete.

    Low-level subscription method that registers a callback to be called when this promise will complete.

    val promise = CancelablePromise[Int]()
    
    def subscribe(n: Int): Cancelable =
      promise.subscribe {
        case Success(str) =>
          println(s"Callback ($$n) completed with: $$str")
        case Failure(e) =>
          println(s"Callback ($$n) completed with: $$e")
      }
    
    val token1 = subscribe(1)
    val token2 = subscribe(2)
    
    // Unsubscribing from the future notification
    token1.cancel()
    
    // Completing our promise
    promise.success(99)
    
    //=> Callback (2) completed with: 99

    UNSAFE PROTOCOL: the implementation does not protect against stack-overflow exceptions. There's no point in doing it for such low level methods, because this is useful as middleware and different implementations will have different ways to deal with stack safety (e.g. monix.eval.Task).

    cb

    is a callback that will be called when the promise completes with a result, assuming that the returned cancelable token isn't canceled

    returns

    a cancelable token that can be used to unsubscribe the given callback, in order to prevent memory leaks, at which point the callback will never be called (if it wasn't called already)

  4. abstract def tryComplete(result: Try[A]): Boolean

    Permalink
    Definition Classes
    Promise

Concrete 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 complete(result: Try[A]): CancelablePromise.this.type

    Permalink
    Definition Classes
    Promise
  7. final def completeWith(other: Future[A]): CancelablePromise.this.type

    Permalink
    Definition Classes
    Promise
  8. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  10. def failure(cause: Throwable): CancelablePromise.this.type

    Permalink
    Definition Classes
    Promise
  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. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  18. def success(value: A): CancelablePromise.this.type

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

    Permalink
    Definition Classes
    AnyRef
  20. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  21. final def tryCompleteWith(other: Future[A]): CancelablePromise.this.type

    Permalink
    Definition Classes
    Promise
  22. def tryFailure(cause: Throwable): Boolean

    Permalink
    Definition Classes
    Promise
  23. def trySuccess(value: A): Boolean

    Permalink
    Definition Classes
    Promise
  24. final def wait(): Unit

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

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

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

Inherited from Promise[A]

Inherited from AnyRef

Inherited from Any

Ungrouped