Uses of Interface
org.jdeferred2.ProgressCallback
Packages that use ProgressCallback
-
Uses of ProgressCallback in org.jdeferred2
Methods in org.jdeferred2 with parameters of type ProgressCallbackModifier and TypeMethodDescriptionPromise.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.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 ProgressCallbackModifier and TypeFieldDescriptionprotected final List
<ProgressCallback<? super P>> AbstractPromise.progressCallbacks
Methods in org.jdeferred2.impl with parameters of type ProgressCallbackModifier and TypeMethodDescriptionAbstractPromise.progress
(ProgressCallback<? super P> callback) DelegatingPromise.progress
(ProgressCallback<? super P> callback) AbstractPromise.then
(DoneCallback<? super D> doneCallback, FailCallback<? super F> failCallback, ProgressCallback<? super P> progressCallback) DelegatingPromise.then
(DoneCallback<? super D> doneCallback, FailCallback<? super F> failCallback, ProgressCallback<? super P> progressCallback) protected void
AbstractPromise.triggerProgress
(ProgressCallback<? super P> callback, P progress)