forked from learning-android/Java-Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMsgGenerator.java
58 lines (47 loc) · 1.33 KB
/
MsgGenerator.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
54
55
56
57
58
package com.marakana.examples;
import java.util.ArrayList;
import java.util.Random;
public class MsgGenerator implements Runnable {
private ArrayList<MsgInterface> list;
public MsgGenerator() {
list = new ArrayList<MsgInterface>();
}
public void run() {
Random rand = new Random();
int r = 0;
ArrayList<MsgInterface> localList = new ArrayList<MsgInterface>();
while((r = rand.nextInt(20)) < 18) {
MsgInterface msg = null;
switch (rand.nextInt(3)) {
case 0: msg = new MsgTypeImplementation();
break;
case 1: msg = new MsgTypeAdditional();
break;
case 2: msg = new MsgTypeImplementationExtended();
break;
}
msg.setMsg("Num is: "+r);
localList.add(msg);
}
synchronized(this) {
list = localList;
this.notifyAll();
}
}
public void printList() {
ArrayList<MsgInterface> localList;
synchronized (this) {
localList = list;
}
System.out.println("List Contents:");
for(MsgInterface msg : localList) {
System.out.println(" "+msg.getMsgType()+" msg = "+msg.getMsg());
if(msg.getMsgType().equals("MsgTypeImplementationExtended")) {
System.out.println(" *** Overloaded getMsg : "+
((MsgTypeImplementationExtended) msg).getMsg("Special") +
((MsgTypeImplementationExtended) msg).getMsg(99));
}
}
System.out.println("List Size: "+list.size());
}
}