CS212 Project Part 2
FAQ and Tips
Frequently Asked Questions
Q. What'll be the first FAQ?
A. Don't know yet... ask away!
Tips
- Start early! This part is a lot more complicated than the last one.
- Remember that any code you write in your GUI thread must execute
quickly. Therefore, you cannot handle communication with the
client/server in your GUI thread. Instead, spawn new threads to handle
all communication. You should have one thread per socket, and that
thread should be dedicated to handling communication through its socket.
- Feel free to use my solution code for part 1 if you'd like. This is
probably most advisable since you'd have to wait until I grade everyone's to
find out if there is something wrong with yours.