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 Function<List<REQ>,List<RES>>
| Modifier and Type | Method and Description |
|---|---|
default List<RES> |
apply(List<REQ> res) |
List<RES> |
processList(List<REQ> list) |
Copyright © 2020 Flowable. All rights reserved.