forked from learning-android/Java-Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathComplexExample.java
36 lines (29 loc) · 1018 Bytes
/
ComplexExample.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
package com.marakana.examples;
/*
In this example, ComplexExample has a main method when executed
instantiates a MsgGenerator object and then passes this object to a
Thread. The Thread's process is then started and then the main thread
waits till the generator object notifies that it is done (via the
notifyAll()). At this point the generator's printList method is called
and information about what was in the generator's list is printed out.
*/
public class ComplexExample {
public static void main(String[] args) {
System.out.println("ComplexExample start");
MsgGenerator generator = new MsgGenerator();
Thread thread = new Thread(generator);
thread.start();
try {
synchronized(generator) {
generator.wait();
}
} catch (InterruptedException ie) {
System.err.println("Generator Wait Interrupted!!!");
ie.printStackTrace();
} finally {
System.out.println("Generator Wait End");
}
generator.printList();
System.out.println("ComplexExample end");
}
}