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 registerProgressCallback
so that when a Deferred object is notified of progress (Deferred.notify(Object)
),ProgressCallback
will 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. progressCallbacks
Methods 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 void
AbstractPromise. triggerProgress(ProgressCallback<? super P> callback, P progress)
-