forked from winterbe/java8-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSemaphore1.java
More file actions
51 lines (39 loc) · 1.24 KB
/
Semaphore1.java
File metadata and controls
51 lines (39 loc) · 1.24 KB
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
package com.winterbe.java8.samples.concurrent;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.Semaphore;
import java.util.concurrent.TimeUnit;
import java.util.stream.IntStream;
/**
* @author Benjamin Winterberg
*/
public class Semaphore1 {
private static final int NUM_INCREMENTS = 10000;
private static Semaphore semaphore = new Semaphore(1);
private static int count = 0;
public static void main(String[] args) {
testIncrement();
}
private static void testIncrement() {
ExecutorService executor = Executors.newFixedThreadPool(2);
IntStream.range(0, NUM_INCREMENTS)
.forEach(i -> executor.submit(Semaphore1::increment));
ConcurrentUtils.stop(executor);
System.out.println("Increment: " + count);
}
private static void increment() {
boolean permit = false;
try {
permit = semaphore.tryAcquire(5, TimeUnit.SECONDS);
count++;
}
catch (InterruptedException e) {
throw new RuntimeException("could not increment");
}
finally {
if (permit) {
semaphore.release();
}
}
}
}