Uses of Class
org.jdeferred2.Promise.State
-
Packages that use Promise.State Package Description org.jdeferred2 org.jdeferred2.impl -
-
Uses of Promise.State in org.jdeferred2
Methods in org.jdeferred2 that return Promise.State Modifier and Type Method Description Promise.State
Promise. state()
static Promise.State
Promise.State. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Promise.State[]
Promise.State. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.jdeferred2 with parameters of type Promise.State Modifier and Type Method Description void
AlwaysCallback. onAlways(Promise.State state, D resolved, F rejected)
Invoked when thePromise
resolves or rejects a value.Promise<D_OUT,F_OUT,P>
AlwaysPipe. pipeAlways(Promise.State state, D resolved, F rejected)
Invoked when thePromise
resolves or rejects a value. -
Uses of Promise.State in org.jdeferred2.impl
Fields in org.jdeferred2.impl declared as Promise.State Modifier and Type Field Description protected Promise.State
AbstractPromise. state
Methods in org.jdeferred2.impl that return Promise.State Modifier and Type Method Description Promise.State
AbstractPromise. state()
Promise.State
DelegatingPromise. state()
Methods in org.jdeferred2.impl with parameters of type Promise.State Modifier and Type Method Description protected void
AbstractPromise. triggerAlways(AlwaysCallback<? super D,? super F> callback, Promise.State state, D resolve, F reject)
protected void
AbstractPromise. triggerAlways(Promise.State state, D resolve, F reject)
-