-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathParallelStreamExample.java
53 lines (45 loc) · 1.65 KB
/
ParallelStreamExample.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
45
46
47
48
49
50
51
52
53
package com.learn.parallelstream;
import java.util.function.Supplier;
import java.util.stream.IntStream;
public class ParallelStreamExample {
public static void main(String[] args) {
System.out.println("Sum By Sequential Stream : " + sumBySequentialStream());
System.out.println("Sum By Parallel Stream : " + sumByParallelStream());
System.out.println("Performance for Sequential Stream " + checkPerformanceResult(ParallelStreamExample::sumBySequentialStream, 20));
System.out.println("Performance for Parallel Stream " + checkPerformanceResult(ParallelStreamExample::sumByParallelStream, 20));
}
public static int sumBySequentialStream() {
return IntStream.rangeClosed(1, 100000)
.sum();
}
/**
* <p>
* If it is parallel stream, this is going to split the data into multiple parts
* and process them concurrently. And it is going to accumulate the result and
* give result as a output.
* </p>
* @return
*/
public static int sumByParallelStream() {
return IntStream.rangeClosed(1, 100000)
.parallel()
.sum();
}
/**
* <p>
* Method to check performance for supplier Passed.
*
* </p>
* @param supplier
* @param numberOfTimes
* @return
*/
public static long checkPerformanceResult(Supplier<Integer> supplier, int numberOfTimes) {
long startTime = System.currentTimeMillis();
for (int i = 1; i <= numberOfTimes; i++) {
supplier.get();
}
long endTime = System.currentTimeMillis();
return endTime - startTime;
}
}