Packages

final class SerialCancelable extends Multi

Represents a monix.execution.Cancelable whose underlying cancelable can be swapped for another cancelable which causes the previous underlying cancelable to be canceled.

Example:

val s = SerialCancelable()
s := c1 // sets the underlying cancelable to c1
s := c2 // cancels c1 and swaps the underlying cancelable to c2

s.cancel() // also cancels c2

s := c3 // also cancels c3, because s is already canceled

Also see OrderedCancelable, which is similar, but doesn't cancel the old cancelable upon assignment.

Source
SerialCancelable.scala
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SerialCancelable
  2. Multi
  3. Bool
  4. BooleanCancelable
  5. AssignableCancelable
  6. Cancelable
  7. Serializable
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def :=(value: Cancelable): SerialCancelable.this.type

    Updates the internal reference of this assignable cancelable to the given value.

    Updates the internal reference of this assignable cancelable to the given value.

    If this cancelable is already canceled, then value is going to be canceled on assignment as well.

    returns

    this

    Definition Classes
    SerialCancelableAssignableCancelable
    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
    SerialCancelableCancelable
  3. def isCanceled: Boolean

    returns

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

    Definition Classes
    SerialCancelableBooleanCancelable