forked from java8/Java8InAction
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStreamForkerExample.java
39 lines (30 loc) · 1.44 KB
/
StreamForkerExample.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package lambdasinaction.appc;
import lambdasinaction.chap6.*;
import static java.util.stream.Collectors.*;
import static lambdasinaction.chap6.Dish.menu;
import java.util.*;
import java.util.stream.*;
public class StreamForkerExample {
public static void main(String[] args) throws Exception {
processMenu();
}
private static void processMenu() {
Stream<Dish> menuStream = menu.stream();
StreamForker.Results results = new StreamForker<Dish>(menuStream)
.fork("shortMenu", s -> s.map(Dish::getName).collect(joining(", ")))
.fork("totalCalories", s -> s.mapToInt(Dish::getCalories).sum())
.fork("mostCaloricDish", s -> s.collect(
reducing((d1, d2) -> d1.getCalories() > d2.getCalories() ? d1 : d2))
.get())
.fork("dishesByType", s -> s.collect(groupingBy(Dish::getType)))
.getResults();
String shortMeny = results.get("shortMenu");
int totalCalories = results.get("totalCalories");
Dish mostCaloricDish = results.get("mostCaloricDish");
Map<Dish.Type, List<Dish>> dishesByType = results.get("dishesByType");
System.out.println("Short menu: " + shortMeny);
System.out.println("Total calories: " + totalCalories);
System.out.println("Most caloric dish: " + mostCaloricDish);
System.out.println("Dishes by type: " + dishesByType);
}
}