Uses of Interface
org.jdeferred2.DoneCallback
Packages that use DoneCallback
-
Uses of DoneCallback in org.jdeferred2
Methods in org.jdeferred2 with parameters of type DoneCallbackModifier and TypeMethodDescriptionPromise.done
(DoneCallback<? super D> callback) This method will registerDoneCallback
so that when a Deferred object is resolved (Deferred.resolve(Object)
),DoneCallback
will be triggered.Promise.then
(DoneCallback<? super D> doneCallback) Equivalent toPromise.done(DoneCallback)
Promise.then
(DoneCallback<? super D> doneCallback, FailCallback<? super F> failCallback) Equivalent toPromise.done(DoneCallback)
.Promise.fail(FailCallback)
Promise.then
(DoneCallback<? super D> doneCallback, FailCallback<? super F> failCallback, ProgressCallback<? super P> progressCallback) -
Uses of DoneCallback in org.jdeferred2.impl
Fields in org.jdeferred2.impl with type parameters of type DoneCallbackModifier and TypeFieldDescriptionprotected final List
<DoneCallback<? super D>> AbstractPromise.doneCallbacks
Methods in org.jdeferred2.impl with parameters of type DoneCallbackModifier and TypeMethodDescriptionAbstractPromise.done
(DoneCallback<? super D> callback) DelegatingPromise.done
(DoneCallback<? super D> callback) AbstractPromise.then
(DoneCallback<? super D> callback) AbstractPromise.then
(DoneCallback<? super D> doneCallback, FailCallback<? super F> failCallback) AbstractPromise.then
(DoneCallback<? super D> doneCallback, FailCallback<? super F> failCallback, ProgressCallback<? super P> progressCallback) DelegatingPromise.then
(DoneCallback<? super D> doneCallback) DelegatingPromise.then
(DoneCallback<? super D> doneCallback, FailCallback<? super F> failCallback) DelegatingPromise.then
(DoneCallback<? super D> doneCallback, FailCallback<? super F> failCallback, ProgressCallback<? super P> progressCallback) protected void
AbstractPromise.triggerDone
(DoneCallback<? super D> callback, D resolved)