Lab10: ChatApp Design & Simple Threads

November 6, 2012

Concepts Java GUIs run in their own single thread. RMI runs in its own single thread. Your code will run in a third thread of its own. When communicating between threads, either through data accesses or function calls, you need to be careful. Java has provided a super-simple way to guarantee that any operation you […]