First, I will admit up front that this is a homework assignment. I need some guideance, but I am not looking for a final solution. However, I have no other resource at this time to eyeball this with me to see what is missing, so any good nudge will be greatly appreciated.
I have a class DateServer that is supposed to generate multiple threads (5) for a client to access. This is what I have, but...
I then have a client (DateClient) that is currently only a single thread, but I also have to modify it to create 50 threads to act like there are multiple request accessing the DateServer.
Originally, I had a loop around the try block for 50 passes, and it worked on the original server, but only 1 at a time.
Again, I'm not looking for the direct solution, but a good hint in the right direction is greatly appreciated.