Interface PostProcessor<T>

Type Parameters:
T - the type of value being processed
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@ExperimentalApi @FunctionalInterface public interface PostProcessor<T>
An interface for applying additional processing to data returned by a spec method of a Feed.
Since:
5.0.0
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    process(T input, Random random)
    Processes the given input value.
  • Method Details

    • process

      @ExperimentalApi T process(T input, Random random)
      Processes the given input value.
      Parameters:
      input - value to process
      random - for randomising the output, if necessary
      Returns:
      a processed result
      Since:
      5.0.0