Uses of Interface
cn.dinodev.spring.commons.promise.AlwaysCallback
Packages that use AlwaysCallback
-
Uses of AlwaysCallback in cn.dinodev.spring.commons.promise
Fields in cn.dinodev.spring.commons.promise with type parameters of type AlwaysCallbackModifier and TypeFieldDescriptionprotected final List<AlwaysCallback<? super D>>AbstractPromise.alwaysCallbacksMethods in cn.dinodev.spring.commons.promise with parameters of type AlwaysCallbackModifier and TypeMethodDescriptionAbstractPromise.always(AlwaysCallback<? super D> callback) Promise.always(AlwaysCallback<? super D> callback) This method will registerAlwaysCallbackso that when a Deferred object is either resolved (Deferred.resolve(Object)) or rejected (Deferred#reject(Object)),AlwaysCallbackwill be triggered.protected voidAbstractPromise.triggerAlways(AlwaysCallback<? super D> callback, Promise.State state, D resolve, Throwable reject)