Uses of Interface
org.jdeferred2.ProgressCallback
-
Packages that use ProgressCallback Package Description org.jdeferred2 org.jdeferred2.impl -
-
Uses of ProgressCallback in org.jdeferred2
Methods in org.jdeferred2 with parameters of type ProgressCallback Modifier and Type Method Description Promise<D,F,P>Promise. progress(ProgressCallback<? super P> callback)This method will registerProgressCallbackso that when a Deferred object is notified of progress (Deferred.notify(Object)),ProgressCallbackwill be triggered.Promise<D,F,P>Promise. then(DoneCallback<? super D> doneCallback, FailCallback<? super F> failCallback, ProgressCallback<? super P> progressCallback) -
Uses of ProgressCallback in org.jdeferred2.impl
Fields in org.jdeferred2.impl with type parameters of type ProgressCallback Modifier and Type Field Description protected java.util.List<ProgressCallback<? super P>>AbstractPromise. progressCallbacksMethods in org.jdeferred2.impl with parameters of type ProgressCallback Modifier and Type Method Description Promise<D,F,P>AbstractPromise. progress(ProgressCallback<? super P> callback)Promise<D,F,P>DelegatingPromise. progress(ProgressCallback<? super P> callback)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, FailCallback<? super F> failCallback, ProgressCallback<? super P> progressCallback)protected voidAbstractPromise. triggerProgress(ProgressCallback<? super P> callback, P progress)
-