Interface DoneFilter<D,D_OUT>

Type Parameters:
D - Type of the input
D_OUT - Type of the output from this filter
All Known Implementing Classes:
FilteredPromise.NoOpDoneFilter

public interface DoneFilter<D,D_OUT>
A filter invoked when the Promise's state becomes Promise.State.RESOLVED. Filters allow to convert a value into a new value. This has to happen synchronous. For asynchronous calls see DonePipe.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    filterDone(D result)
     
  • Method Details

    • filterDone

      D_OUT filterDone(D result)