Packages

trait BooleanCancelableF[F[_]] extends CancelableF[F]

Represents a CancelableF that can be queried for the canceled status.

Source
BooleanCancelableF.scala
See also

monix.execution.cancelables.BooleanCancelable for the simpler, side-effecting version.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BooleanCancelableF
  2. CancelableF
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def cancel: CancelToken[F]
    Definition Classes
    CancelableF
  2. abstract def isCanceled: F[Boolean]

    returns

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