-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPolice.java
50 lines (42 loc) · 1.1 KB
/
Police.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
package ThreadlivelockExample;
/**
* @author Virendra Singh
*
* The Class Police.
*/
public class Police {
/** The money sent. */
private boolean moneySent = false;
/**
* Give ransom.
*
* @param crimnal the crimnal
* @throws InterruptedException the interrupted exception
*/
public void giveRansom(Criminal crimnal) throws InterruptedException {
while (!crimnal.isHostageRelased()) {
System.out.println("Criminals have not released hostage yet, We can not give money yet, "
+ "we will check after 2 seconds if criminals have released hostages");
Thread.sleep(2000);
}
System.out.println(" ok wow!! Criminals have not released hostage, We can give money now");
this.moneySent = true;
System.out.println(" We have given money now");
}
/**
* Sets the money sent.
*
* @param moneySent the new money sent
*/
public void setMoneySent(boolean moneySent) {
this.moneySent = moneySent;
}
/**
* Checks if is money set.
*
* @return true, if is money set
*/
public boolean isMoneySet() {
return this.moneySent;
}
}