CancelableOperation
open class CancelableOperation @JvmOverloads constructor(looper: Looper? = null) : Cancelable, Runnable(source)
A cancelable operation that executes its task on a specific looper.
Functions
Link copied to clipboard
Adds a Cancelable that will be called when operation is cancelled. If the operation is already canceled the operation will immediately be canceled.
Link copied to clipboard
Adds a runnable that will be called when operation is finished. If the operation is already finished the runnable will be called immediately.
Link copied to clipboard
Determines if the operation is canceled.