April 2004
Intermediate to advanced
520 pages
10h 10m
English
Concurrency patterns deal with:
| Chapter | Pattern Name | Description |
| 41 | Critical Section | Stricter form of Monitor. Used to lock the code at the class level to keep multiple threads from executing the locked code even on two different instances of the same class. |
| 42 | Consistent Lock Order | Recommends identifying and documenting a well-defined order of locking objects to be followed consistently during the design ... |