Package org.jdeferred2
Interface DoneFilter<D,D_OUT>
-
- Type Parameters:
D
- Type of the inputD_OUT
- Type of the output from this filter
- All Known Implementing Classes:
FilteredPromise.NoOpDoneFilter
public interface DoneFilter<D,D_OUT>
A filter invoked when thePromise
's state becomesPromise.State.RESOLVED
. Filters allow to convert a value into a new value. This has to happen synchronous. For asynchronous calls seeDonePipe
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description D_OUT
filterDone(D result)
-