IBoolCancelable represents a ICancelable that can be queried for the canceled status.
IBoolCancelable
Return true in case this cancelable hasn't been canceled, or false otherwise.
true
false
const ref = BoolCancelable.of() ref.isCanceled() // false ref.cancel() ref.isCanceled() // true
Generated using TypeDoc
IBoolCancelable
represents a ICancelable that can be queried for the canceled status.