-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAcknowledgment.java
More file actions
60 lines (50 loc) · 1.16 KB
/
Acknowledgment.java
File metadata and controls
60 lines (50 loc) · 1.16 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
52
53
54
55
56
57
58
59
60
interface Acknowledgment {
void requestAck();
void releaseAck();
boolean isReleased();
}
class SingleAck implements Acknowledgment {
private boolean flag;
public SingleAck() {
flag = false;
}
public synchronized void requestAck() {
while (!flag) {
try {
wait();
} catch (InterruptedException exc) {
exc.printStackTrace();
}
}
}
public synchronized void releaseAck() {
flag = true;
notify();
}
public synchronized boolean isReleased() {
return flag;
}
}
class MultipleAck implements Acknowledgment {
private int acks;
public MultipleAck(int acks) {
this.acks = acks * (-1);
}
public synchronized void requestAck() {
while (acks < 0) {
try {
wait();
} catch (InterruptedException exc) {
exc.printStackTrace();
}
}
}
public synchronized void releaseAck() {
if (++acks >= 0) {
notify();
}
}
public synchronized boolean isReleased() {
return acks >= 0;
}
}