Uses of Interface
org.jdeferred2.CancellationHandler
-
Packages that use CancellationHandler Package Description org.jdeferred2 -
-
Uses of CancellationHandler in org.jdeferred2
Fields in org.jdeferred2 declared as CancellationHandler Modifier and Type Field Description private CancellationHandler
DeferredFutureTask. cancellationHandler
Constructors in org.jdeferred2 with parameters of type CancellationHandler Constructor Description DeferredFutureTask(java.lang.Runnable task, CancellationHandler cancellationHandler)
Creates a newDeferredFutureTask
with the given task and a explicitCancellationHandler
The givencancellationHandler
has precedence over the given task if the task implements theCancellationHandler
interface.DeferredFutureTask(java.util.concurrent.Callable<D> task, CancellationHandler cancellationHandler)
Creates a newDeferredFutureTask
with the given task and a explicitCancellationHandler
The givencancellationHandler
has precedence over the given task if the task implements theCancellationHandler
interface.DeferredFutureTask(DeferredCallable<D,P> task, CancellationHandler cancellationHandler)
Creates a newDeferredFutureTask
with the given task and a explicitCancellationHandler
The givencancellationHandler
has precedence over the given task if the task implements theCancellationHandler
interface.DeferredFutureTask(DeferredRunnable<P> task, CancellationHandler cancellationHandler)
Creates a newDeferredFutureTask
with the given task and a explicitCancellationHandler
The givencancellationHandler
has precedence over the given task if the task implements theCancellationHandler
interface.
-