Packages

final class RefCountCancelable extends BooleanCancelable

Represents a Cancelable that only executes the canceling logic when all dependent cancelable objects have been canceled.

The given callback gets called after our RefCountCancelable is canceled and after all dependent cancelables have been canceled along with the main cancelable.

In other words, lets say for example that we have acquired 2 children. In order for the cancelable to get canceled, we need to:

  • cancel both children
  • cancel the main RefCountCancelable

The implementation is thread-safe and cancellation order doesn't matter.

Source
RefCountCancelable.scala
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RefCountCancelable
  2. BooleanCancelable
  3. Cancelable
  4. Serializable
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def acquire(): Cancelable

    Acquires a new Cancelable.

    Acquires a new Cancelable.

    Annotations
    @tailrec()
  2. def cancel(): Unit

    Cancels the unit of work represented by this reference.

    Cancels the unit of work represented by this reference.

    Guaranteed idempotency - calling it multiple times should have the same side-effect as calling it only once. Implementations of this method should also be thread-safe.

    Definition Classes
    RefCountCancelableCancelable
  3. def isCanceled: Boolean

    returns

    true in case this cancelable hasn't been canceled, or false otherwise.

    Definition Classes
    RefCountCancelableBooleanCancelable