Swimming with the Stream Sharks
Java has introduced Stream API as part of JDK 8. These can use a new set of classes from the java.util.stream package, and the idea is to support data operations on lists that you may have in memory. Developers would typically integrate these with lambda expressions to evaluate Collections using a functional operator.
(more…)