Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update MessageDispatcher.java #11

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,18 +1,31 @@
package rpian.vartalap.server;

import java.io.PrintWriter;
import java.util.Collection;
import java.util.Iterator;

public class MessageDispatcher extends Thread {
public class MessageDispatcher extends Thread
{

@Override
public void run() {
while (true) {
try {
public void run()
{
while (true)
{
try
{
String str = RPIANVartalapServer.q.dequeue();
for (PrintWriter o : RPIANVartalapServer.nosArrayList) {
o.println(str);
System.out.println("Str = "+str);
Collection c = RPIANVartalapServer.nosArrayList.values();//currently you can get all nos later u can get based on username
Iterator<PrintWriter> i = c.iterator();
while (i.hasNext())
{
PrintWriter p = i.next();
p.println(str);
}
} catch (Exception e) {
}
catch (Exception e)
{
System.out.println("MessageDispatcher Caught Exception: " + e);
}
}
Expand Down