The Concurrent Object Oriented Model
- Multiple threads of execution.
- All threads share the same adress space.
- Any thread can invoke the methods of any object.
- Several threads can manipulate the same object concurrently.
- The programmer must use synchronization tools (monitors, semaphores, etc.)
to ensure mutual exclusion when necessary.
- 6 -