|
| 1 | +# Chapter 2 |
| 2 | +- Re-entrant lock: same thread can acquire same lock any number of times (e.g. |
| 3 | + subclass first acquires it and calls superclass method which again acquires). |
| 4 | +- Every java reference can be used as a lock via the `synchronized` block. |
| 5 | + |
| 6 | +# Chapter 3 |
| 7 | +- The compiler can reorder memory management instructions causing *visibility* |
| 8 | + issues: changes made to shared memory by one thread are not visible to other |
| 9 | + threads. |
| 10 | +- Visibility can happen due to objects being stored in cache etc. |
| 11 | +- `volatile` keyword can be used to mark a reference as being used by multiple |
| 12 | + threads and disable caching, forcing the JVM to load the object each time. |
| 13 | +- The most common use for volatile variables is as a completion, interruption, |
| 14 | + or status flag. |
| 15 | +- Use volatile variables iff: |
| 16 | + 1. Writes to variable does not depend on current value |
| 17 | + 2. Variable does not participate in invariants with other state variables |
| 18 | + 3. Locking is not required for any other reason while variable is being |
| 19 | + accessed |
| 20 | +- Semantics of volatile variable are not strong enough to make increment |
| 21 | + operator ++ atomic. |
| 22 | +- Out-of-thin-air safety: a shared variable read by a thread will have a value |
| 23 | + written to it by some other thread (and not some garbage value). Only |
| 24 | + exception is non-volatile 64-bit numbers (long/double). |
| 25 | +- Publishing an object: making it available to code outside of its current |
| 26 | + scope. |
| 27 | +- Publishing an object should be done in a thread-safe, synchronized manner. |
| 28 | + Otherwise an incompletely constructed object may get published. |
| 29 | +- Any object reachable from a published object by following some chain of |
| 30 | + nonprivate field references and method calls has also been published. |
| 31 | +- Alien method of a class C is any method whose behaviour is not fully |
| 32 | + specified by C. E.g. methods in other class instances of C are passed to and |
| 33 | + overrideable methods in C. |
| 34 | +- (anonymous) inner classes also capture the reference to containing superclass |
| 35 | + and can publish the object. |
| 36 | +- Publishing an object from within its constructor can publish an incompletely |
| 37 | + constructed object. |
| 38 | + |
| 39 | +# Chapter 5 |
| 40 | +- Collections like `Map`, `List`, etc would require threads to lock entire |
| 41 | + collection to ensure correctness with concurrent access. |
| 42 | +- `ConcurrentModificationException`: an unchecked exception thrown when a |
| 43 | + collection that is being read (via an iterator) is changed concurrently by |
| 44 | + some other thread. |
| 45 | +- `ConcurrentModificationException` is a good faith exception meaning best |
| 46 | + effort is made to throw it, but no guarantee that it will thrown upon a |
| 47 | + concurrent modification. |
| 48 | +- Hidden iterators like `println("Set = " + set)` can also throw |
| 49 | + `ConcurrentModificationException` since above code gets translated to a call |
| 50 | + to an iteration of the set. |
| 51 | +- `ConcurrentHashMap`: |
| 52 | + + arbitrary number of readers |
| 53 | + + limited number of writers |
| 54 | + + low performance penality on single core |
| 55 | + + weakly consistent (approximately correct): iterator may or may not reflect |
| 56 | + concurrent updates |
| 57 | + + `size` and `isEmpty` are approximate |
| 58 | + + only when application needs to lock Map for exclusive access the |
| 59 | + ConcurrentHashMap is not correct replacement |
| 60 | +- Copy-on-write collection |
| 61 | +- `BlockingQueue`: blocks threads on queue underflow and overflow. |
| 62 | +- Implementations of `BlockingQueue`: |
| 63 | + + LinkedBlockingQueue |
| 64 | + + ArrayBlockingQueue |
| 65 | + + PriorityBlockingQueue |
| 66 | + + SynchronousQueue: queue of threads, consumer should always be ready to |
| 67 | + participate in hand-off from producer; otherwise producer will block |
| 68 | +- Work stealing pattern: consumers can consume from other consumer's queue |
| 69 | +- Deque: double eneded queue used for work stealing pattern |
| 70 | +- `CountDownLatch`: `await` and `countDown` |
| 71 | +- `Semaphore`: `acquire` and `release`. Fair if FIFO is followed in granting |
| 72 | + the permits. |
| 73 | + |
| 74 | +# Chapter 6 |
| 75 | +- Executor: separates task submission from task execution. |
| 76 | +- RejectedExecutionException: exception thrown when a task submitted to an |
| 77 | + executor is not run. |
| 78 | + |
| 79 | +# Chapter 14 |
| 80 | +- Use `wait`, `notify`, `notifyAll` on any `Object` for conditional variables. |
0 commit comments