Uses of Interface
org.jdeferred2.DoneCallback
-
Packages that use DoneCallback Package Description org.jdeferred2 org.jdeferred2.impl -
-
Uses of DoneCallback in org.jdeferred2
Methods in org.jdeferred2 with parameters of type DoneCallback Modifier and Type Method Description Promise<D,F,P>Promise. done(DoneCallback<? super D> callback)This method will registerDoneCallbackso that when a Deferred object is resolved (Deferred.resolve(Object)),DoneCallbackwill be triggered.Promise<D,F,P>Promise. then(DoneCallback<? super D> doneCallback)Equivalent toPromise.done(DoneCallback)Promise<D,F,P>Promise. then(DoneCallback<? super D> doneCallback, FailCallback<? super F> failCallback)Equivalent toPromise.done(DoneCallback).Promise.fail(FailCallback)Promise<D,F,P>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 DoneCallback Modifier and Type Field Description protected java.util.List<DoneCallback<? super D>>AbstractPromise. doneCallbacksMethods in org.jdeferred2.impl with parameters of type DoneCallback Modifier and Type Method Description Promise<D,F,P>AbstractPromise. done(DoneCallback<? super D> callback)Promise<D,F,P>DelegatingPromise. done(DoneCallback<? super D> callback)Promise<D,F,P>AbstractPromise. then(DoneCallback<? super D> callback)Promise<D,F,P>AbstractPromise. then(DoneCallback<? super D> doneCallback, FailCallback<? super F> failCallback)Promise<D,F,P>AbstractPromise. then(DoneCallback<? super D> doneCallback, FailCallback<? super F> failCallback, ProgressCallback<? super P> progressCallback)Promise<D,F,P>DelegatingPromise. then(DoneCallback<? super D> doneCallback)Promise<D,F,P>DelegatingPromise. then(DoneCallback<? super D> doneCallback, FailCallback<? super F> failCallback)Promise<D,F,P>DelegatingPromise. then(DoneCallback<? super D> doneCallback, FailCallback<? super F> failCallback, ProgressCallback<? super P> progressCallback)protected voidAbstractPromise. triggerDone(DoneCallback<? super D> callback, D resolved)
-