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
- 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: 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.
- 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: 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.
- 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: 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.
- 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
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- 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.
- final def getClass(): Class[_ <: AnyRef]
- 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: 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.
- 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(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
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.catnap exposes pure abstractions built on top of the Cats-Effect type classes:
monix.eval is for dealing with evaluation of results, thus exposing Task and Coeval.
monix.reactive exposes the
Observable
pattern:Observable
implementationsmonix.tail exposes Iterant for purely functional pull based streaming:
Batch
andBatchCursor
, the alternatives to Scala'sIterable
andIterator
respectively that we are using within Iterant's encodingYou can control evaluation with type you choose - be it Task, Coeval, cats.effect.IO or your own as long as you provide correct cats-effect or cats typeclass instance.