I have a server, that sends different files (each opening a thread) on request. each thread doesn't know which file hes handling on creation but only once a message with its name is received, so at that time I need to associate it with the file somehow.
I need the option to wait for all the threads of a certain file to end, and of course all the threads in the server.
The whole threads thing is done with a thread group, as for the files, I wanted to add a list of threads to each file (I have a wrapper class for it already), and add the option to wait for a certain file. but I don't think this is a good solution, plus I need to use some concurrent collection, and I cant find anything that is just a concurrent linked list.
Any suggestion how to implement this?