Interface ListProcessor<REQ,RES>

Type Parameters:
REQ - The type of the elements that need to be processed
RES - The type of the elements that will be created
All Superinterfaces:
Function<List<REQ>,List<RES>>
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface ListProcessor<REQ,RES> extends Function<List<REQ>,List<RES>>
A processor for converting List of a certain type into list of a different type.
Author:
Filip Hrisafov