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
- Alphabetic
- By Inheritance
- CompositeCancelable
- BooleanCancelable
- Cancelable
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
def
++=(that: GenTraversableOnce[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.
-
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.
-
def
--=(that: GenTraversableOnce[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.
-
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.
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
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()
-
def
addAll(that: GenTraversableOnce[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.
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
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
- CompositeCancelable → Cancelable
- Annotations
- @tailrec()
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
def
getAndSet(that: GenTraversableOnce[Cancelable]): Set[Cancelable]
Replaces the underlying set of cancelables with a new one, returning the old set just before the substitution happened.
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
isCanceled: Boolean
- returns
true in case this cancelable hasn't been canceled, or false otherwise.
- Definition Classes
- CompositeCancelable → BooleanCancelable
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
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()
-
def
removeAll(that: GenTraversableOnce[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.
-
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()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
This is the API documentation for the Monix library.
Package Overview
monix.execution exposes lower level primitives for dealing with asynchronous execution:
Atomic
types, as alternative tojava.util.concurrent.atomic
monix.eval is for dealing with evaluation of results, thus exposing Task and Coeval.
monix.reactive exposes the
Observable
pattern:Observable
implementationsmonix.types implements type-class shims, to be translated to type-classes provided by libraries such as Cats or Scalaz.
monix.cats is the optional integration with the Cats library, providing translations for the types described in
monix.types
.monix.scalaz is the optional integration with the Scalaz library, providing translations for the types described in
monix.types
.