REQ - The type of the elements that need to be processedRES - The type of the elements that will be created@FunctionalInterface public interface ListProcessor<REQ,RES> extends java.util.function.Function<List<REQ>,List<RES>>
| Modifier and Type | Method and Description |
|---|---|
default List<RES> |
apply(List<REQ> res) |
List<RES> |
processList(List<REQ> list) |
andThen, compose, identityCopyright © 2019 Flowable. All rights reserved.