Packages

final class CompositeCancelable extends BooleanCancelable

Represents a composite of multiple cancelables. In case it is canceled, all contained cancelables will be canceled too, e.g...

val s = CompositeCancelable()

s += c1
s += c2
s += c3

// c1, c2, c3 will also be canceled
s.cancel()

Additionally, once canceled, on appending of new cancelable references, those references will automatically get canceled too:

val s = CompositeCancelable()
s.cancel()

// c1 gets canceled, because s is already canceled
s += c1
// c2 gets canceled, because s is already canceled
s += c2

Adding and removing references from this composite is thread-safe.

Self Type
CompositeCancelable
Source
CompositeCancelable.scala
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CompositeCancelable
  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 ++=(that: Iterable[Cancelable]): CompositeCancelable.this.type

    Adds a collection of cancelables to this composite.

    Adds a collection of cancelables to this composite.

    If this composite is already canceled, then all the cancelables in the given collection will get canceled as well.

    Alias for addAll.

  2. def +=(other: Cancelable): CompositeCancelable.this.type

    Adds a cancelable reference to this composite.

    Adds a cancelable reference to this composite.

    If this composite is already canceled, then the given reference will be canceled as well.

    Alias for add.

  3. def --=(that: Iterable[Cancelable]): CompositeCancelable.this.type

    Removes a collection of cancelables from this composite.

    Removes a collection of cancelables from this composite.

    By removing references from the composite, we ensure that the removed references don't get canceled when the composite gets canceled. Also useful for garbage collecting purposes.

    Alias for removeAll.

  4. def -=(s: Cancelable): CompositeCancelable.this.type

    Removes a cancelable reference from this composite.

    Removes a cancelable reference from this composite.

    By removing references from the composite, we ensure that the removed references don't get canceled when the composite gets canceled. Also useful for garbage collecting purposes.

    Alias for remove.

  5. def add(other: Cancelable): CompositeCancelable.this.type

    Adds a cancelable reference to this composite.

    Adds a cancelable reference to this composite.

    If this composite is already canceled, then the given reference will be canceled as well.

    Annotations
    @tailrec()
  6. def addAll(that: Iterable[Cancelable]): CompositeCancelable.this.type

    Adds a collection of cancelables to this composite.

    Adds a collection of cancelables to this composite.

    If this composite is already canceled, then all the cancelables in the given collection will get canceled as well.

  7. 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
    CompositeCancelableCancelable
    Annotations
    @tailrec()
  8. def getAndSet(that: Iterable[Cancelable]): Set[Cancelable]

    Replaces the underlying set of cancelables with a new one, returning the old set just before the substitution happened.

  9. def isCanceled: Boolean

    returns

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

    Definition Classes
    CompositeCancelableBooleanCancelable
  10. def remove(s: Cancelable): CompositeCancelable.this.type

    Removes a cancelable reference from this composite.

    Removes a cancelable reference from this composite.

    By removing references from the composite, we ensure that the removed references don't get canceled when the composite gets canceled. Also useful for garbage collecting purposes.

    Annotations
    @tailrec()
  11. def removeAll(that: Iterable[Cancelable]): CompositeCancelable.this.type

    Removes a collection of cancelables from this composite.

    Removes a collection of cancelables from this composite.

    By removing references from the composite, we ensure that the removed references don't get canceled when the composite gets canceled. Also useful for garbage collecting purposes.

  12. def reset(): CompositeCancelable.this.type

    Resets this composite to an empty state, if not canceled, otherwise leaves it in the canceled state.

    Resets this composite to an empty state, if not canceled, otherwise leaves it in the canceled state.

    Annotations
    @tailrec()