Uses of Interface
org.jdeferred2.AlwaysCallback
-
Packages that use AlwaysCallback Package Description org.jdeferred2 org.jdeferred2.impl -
-
Uses of AlwaysCallback in org.jdeferred2
Methods in org.jdeferred2 with parameters of type AlwaysCallback Modifier and Type Method Description Promise<D,F,P>
Promise. always(AlwaysCallback<? super D,? super F> callback)
This method will registerAlwaysCallback
so that when a Deferred object is either resolved (Deferred.resolve(Object)
) or rejected (Deferred.reject(Object)
),AlwaysCallback
will be triggered. -
Uses of AlwaysCallback in org.jdeferred2.impl
Fields in org.jdeferred2.impl with type parameters of type AlwaysCallback Modifier and Type Field Description protected java.util.List<AlwaysCallback<? super D,? super F>>
AbstractPromise. alwaysCallbacks
Methods in org.jdeferred2.impl with parameters of type AlwaysCallback Modifier and Type Method Description Promise<D,F,P>
AbstractPromise. always(AlwaysCallback<? super D,? super F> callback)
Promise<D,F,P>
DelegatingPromise. always(AlwaysCallback<? super D,? super F> callback)
protected void
AbstractPromise. triggerAlways(AlwaysCallback<? super D,? super F> callback, Promise.State state, D resolve, F reject)
-