Uses of Interface
org.jdeferred2.AlwaysPipe
-
Packages that use AlwaysPipe Package Description org.jdeferred2 org.jdeferred2.impl -
-
Uses of AlwaysPipe in org.jdeferred2
Methods in org.jdeferred2 with parameters of type AlwaysPipe Modifier and Type Method Description <D_OUT,F_OUT>
Promise<D_OUT,F_OUT,P>Promise. pipeAlways(AlwaysPipe<? super D,? super F,? extends D_OUT,? extends F_OUT,? extends P> alwaysPipe)
This method will register a pipe such that when a Deferred object is either resolved (Deferred.resolve(Object)
) or rejected (Deferred.reject(Object)
) the pipe will be invoked. -
Uses of AlwaysPipe in org.jdeferred2.impl
Methods in org.jdeferred2.impl with parameters of type AlwaysPipe Modifier and Type Method Description <D_OUT,F_OUT>
Promise<D_OUT,F_OUT,P>AbstractPromise. pipeAlways(AlwaysPipe<? super D,? super F,? extends D_OUT,? extends F_OUT,? extends P> alwaysPipe)
<D_OUT,F_OUT>
Promise<D_OUT,F_OUT,P>DelegatingPromise. pipeAlways(AlwaysPipe<? super D,? super F,? extends D_OUT,? extends F_OUT,? extends P> alwaysPipe)
Constructors in org.jdeferred2.impl with parameters of type AlwaysPipe Constructor Description PipedPromise(Promise<D,F,P_OUT> promise, AlwaysPipe<? super D,? super F,? extends D_OUT,? extends F_OUT,? extends P_OUT> alwaysFilter)
-