onInterrupt

infix fun onInterrupt(onInterrupt: Consumer<Task>): DynamicTask
fun onInterrupt(onInterrupt: Runnable, ktCompatUnusedIgnore: Any? = null): DynamicTask

Runs when the task is interrupted (finished but not by isFinished).


protected open override fun onInterrupt()

Finalising function that will be called after onFinish in the event this task is finished via a call to finish or finishNow. Override to add your own callback.