11.8k views
4 votes
Using the concepts from the Concurrency Basics Tutorial I provided in Modules, write a program that consists of two threads. The first is the main thread that every Java application has. The main thread should create a new thread from the Runnable object, MessageLoop, and wait for it to finish. If the MessageLoop thread takes too long to finish, the main thread should interrupt it. Use a variable named maxWaitTime to store the maximum number of seconds to wait. The main thread should output a message stating that it is still waiting every half second.

The MessageLoop thread should print out a series of 5 messages. It should wait 850 milliseconds between printing messages to create a delay. If it is interrupted before it has printed all its messages, the MessageLoop thread should print "Message loop interrupted" and exit.
Your program must demonstrate that it can both output messages and interrupt the message output. To do this, place your code in main into a for loop using maxWaitTime as the index.
So in main your code will be
for (int maxWaitTime = 1; maxWaitTime <= 5; maxWaitTime++) {
// All of main's processing goes here (All does not mean part of. ALL of main).
}
maxWaitTime means the same as it would in real life. It is how long the main thread waits before interrupting.
Sample output :
maxWaitTime: 1 second(s)
main : Starting MessageLoop thread
main : Waiting for MessageLoop thread to finish
main : Continuing to wait...
main : Continuing to wait...
Thread-0 : 1. All that is gold does not glitter, Not all those who wander are lost
main : MessageLoop interrupted
maxWaitTime: 2 second(s)
main : Starting MessageLoop thread
main : Waiting for MessageLoop thread to finish
main : Continuing to wait...
main : Continuing to wait...
Thread-1 : 1. All that is gold does not glitter, Not all those who wander are lost
main : Continuing to wait...
main : Continuing to wait...
Thread-1 : 2. The old that is strong does not wither, Deep roots are not reached by the frost
main : MessageLoop interrupted
maxWaitTime: 3 second(s)
main : Starting MessageLoop thread
main : Waiting for MessageLoop thread to finish
main : Continuing to wait...
main : Continuing to wait...
Thread-2 : 1. All that is gold does not glitter, Not all those who wander are lost
main : Continuing to wait...
main : Continuing to wait...
Thread-2 : 2. The old that is strong does not wither, Deep roots are not reached by the frost
main : Continuing to wait...
main : Continuing to wait...
Thread-2 : 3. From the ashes a fire shall be woken, A light from the shadows shall spring
main : MessageLoop interrupted
maxWaitTime: 4 second(s)
main : Starting MessageLoop thread
main : Waiting for MessageLoop thread to finish
main : Continuing to wait...
main : Continuing to wait...
Thread-3 : 1. All that is gold does not glitter, Not all those who wander are lost
main : Continuing to wait...
main : Continuing to wait...
Thread-3 : 2. The old that is strong does not wither, Deep roots are not reached by the frost
main : Continuing to wait...
main : Continuing to wait...
Thread-3 : 3. From the ashes a fire shall be woken, A light from the shadows shall spring
main : Continuing to wait...
Thread-3 : 4. Renewed shall be blade that was broken
main : Continuing to wait...
main : MessageLoop interrupted
maxWaitTime: 5 second(s)
main : Starting MessageLoop thread
main : Waiting for MessageLoop thread to finish
main : Continuing to wait...
main : Continuing to wait...
Thread-4 : 1. All that is gold does not glitter, Not all those who wander are lost
main : Continuing to wait...
main : Continuing to wait...
Thread-4 : 2. The old that is strong does not wither, Deep roots are not reached by the frost
main : Continuing to wait...
main : Continuing to wait...
Thread-4 : 3. From the ashes a fire shall be woken, A light from the shadows shall spring
main : Continuing to wait...
Thread-4 : 4. Renewed shall be blade that was broken
main : Continuing to wait...
main : Continuing to wait...
Thread-4 : 5. The crownless again shall be king
main : Done!

User Psy
by
7.5k points

1 Answer

2 votes

Final answer:

To write a program that consists of two threads using the concepts from the Concurrency Basics Tutorial in Java, you can create a main thread and a MessageLoop thread. The main thread should create a new thread from the Runnable object, MessageLoop, and wait for it to finish. If the MessageLoop thread takes too long to finish, the main thread should interrupt it.

Step-by-step explanation:

To write a program that consists of two threads using the concepts from the Concurrency Basics Tutorial in Java, you can create a main thread and a MessageLoop thread. The main thread can create a new thread from the Runnable object, MessageLoop, and wait for it to finish. If the MessageLoop thread takes too long to finish, the main thread can interrupt it. You can use a variable named maxWaitTime to store the maximum number of seconds to wait.



Here's an example of how you can implement this:



class MessageLoop implements Runnable {
public void run() {
try {
for (int i = 1; i <= 5; i++) {
System.out.println("Thread-" + Thread.currentThread().getId() + ": " + i + ". All that is gold does not glitter, Not all those who wander are lost");
Thread.sleep(850);
}
} catch (InterruptedException e) {
System.out.println("Message loop interrupted");
}
}
}

public class MainThread {

public static void main(String[] args) {
for (int maxWaitTime = 1; maxWaitTime <= 5; maxWaitTime++) {
System.out.println("maxWaitTime: " + maxWaitTime + " second(s)");
System.out.println("main : Starting MessageLoop thread");
Thread messageLoopThread = new Thread(new MessageLoop());
messageLoopThread.start();
try {
messageLoopThread.join(maxWaitTime * 1000);
if (messageLoopThread.isAlive()) {
System.out.println("main : MessageLoop interrupted");
messageLoopThread.interrupt();
}
} catch (InterruptedException e) {
e.printStackTrace();
}
}
System.out.println("main : Done!");
}
}

User Ignitor
by
7.8k points