I have a HashMap with the addresses and the names of the clients that are assigned on a server.When a user signs off everybody receives a message about his departure and then I remove him from the HashMap. The problem is when I iterate the HashMap in order to send to everyone the message I use a thread and as a result the users is removed before iteration happens, thus he don't receives the message. I tried Hashtable , ConcurrentHashMap in vain. When i skip the line of removal then it works. How can I avoid it ,can I use a different kind of map;
private HashMap<InetAddress, String> users = new HashMap<InetAddress, String>();
. . .
UDPServerSender sender = new UDPServerSender(str, address, true);
sender.start();
users.remove(address);
. . .
public class UDPServerSender extends Thread {
@Override
public void run() {
iterator = users.keySet().iterator();
while (iterator.hasNext()) {
InetAddress inetaddress = (InetAddress) iterator.next();
I figured I can send a separate message to the signed off users.
start()beforeremove(), there's absolutely no guarantee as to what will happen in what order. – biziclop Mar 30 '12 at 15:09HashMapbut rather synchronizing the execution order of operations between your threads. If you can't do that or do not want to you can instead create a copy of yourHashMapand run the message broadcast on that copy. – Howard Mar 30 '12 at 16:32