so I have hit a little problem in my code I have:
synchronized(clients)
clients.remove(this);
}
for when a client disconnects, but now I need to be able to send the name of that client to all the other clients, and to do this I essentialy need to do something like
synchronized(clients)
broadcast("Remove:"+clients.get(this).name);
clients.remove(this);
}
but obviously I can't get an index with the "this", so how do I go about getting the right clients name? Thanks!