-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathParallelStreamExample1.java
44 lines (38 loc) · 1.58 KB
/
ParallelStreamExample1.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
40
41
42
43
44
package com.learn.parallelstream;
import com.learn.data.Student;
import com.learn.data.StudentDataBase;
import java.util.List;
import java.util.stream.Collectors;
public class ParallelStreamExample1 {
public static void main(String[] args) {
sequentialStudentActivities();
parallelStudentActivities();
}
public static List<String> sequentialStudentActivities() {
long startTime = System.currentTimeMillis();
List<String> studentActivities = StudentDataBase.getAllStudents()
.stream() //Stream<Student>
.map(Student::getActivities) // Stream<List<String>> -- stateless
.flatMap(List::stream) // Stream<String> -- stateless
.distinct() // stateful
.sorted() //stateful
.collect(Collectors.toList());
long endTime = System.currentTimeMillis();
System.out.println("Sequential Time Take = " + (endTime - startTime));
return studentActivities;
}
public static List<String> parallelStudentActivities() {
long startTime = System.currentTimeMillis();
List<String> studentActivities = StudentDataBase.getAllStudents()
.stream()
.parallel()
.map(Student::getActivities)
.flatMap(List::stream)
.distinct()
.sorted()
.collect(Collectors.toList());
long endTime = System.currentTimeMillis();
System.out.println("Parallel Time Take = " + (endTime - startTime));
return studentActivities;
}
}