|
57 | 57 | + `size` and `isEmpty` are approximate
|
58 | 58 | + only when application needs to lock Map for exclusive access the
|
59 | 59 | ConcurrentHashMap is not correct replacement
|
| 60 | +- `ConcurrentHashMap` interface: |
| 61 | + + `putIfAbsent` (atomic check and insert) |
60 | 62 | - Copy-on-write collection
|
61 | 63 | - `BlockingQueue`: blocks threads on queue underflow and overflow.
|
| 64 | +- `BlockingQueue` interface: |
| 65 | + + `add` |
| 66 | + + `offer` |
| 67 | + + `take` |
| 68 | + + `poll` |
62 | 69 | - Implementations of `BlockingQueue`:
|
63 | 70 | + LinkedBlockingQueue
|
64 | 71 | + ArrayBlockingQueue
|
|
67 | 74 | participate in hand-off from producer; otherwise producer will block
|
68 | 75 | - Work stealing pattern: consumers can consume from other consumer's queue
|
69 | 76 | - 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. |
| 77 | +- Synchronizer: object used to coordinate control flow of threads based on |
| 78 | + shared state of syncrhonizer. |
| 79 | + |
| 80 | +- `Latch`: synchronizer used to delay progress of thread until latch reaches |
| 81 | + terminal state. |
| 82 | +- `CountDownLatch` interface: |
| 83 | + + `await` |
| 84 | + + `countDown` |
| 85 | + |
| 86 | +- `CyclicBarrier`: synchronizer that allows a set of threads to all wait for |
| 87 | + each other to reach a common barrier point repeatedly. |
| 88 | +- `CyclicBarrier` interface: |
| 89 | + + `await` |
| 90 | + |
| 91 | +- `Semaphore` used to control number of threads that can access a certain |
| 92 | + resource (e.g. file descriptor) or perform a given action at a time. |
| 93 | +- `Semaphore` controls a set of virtual permits which threads can acquire and |
| 94 | + release. |
| 95 | +- `Semaphore` interface: |
| 96 | + + `acquire` |
| 97 | + + `release`. |
| 98 | +- `Semaphore` is fair if FIFO is followed in granting the permits. |
73 | 99 |
|
74 | 100 | # Chapter 6
|
75 |
| -- Executor: separates task submission from task execution. |
| 101 | +- Disadvantages of unbounded thread creation: |
| 102 | + + Threadlife cycle overhead |
| 103 | + + Idle thread increase resource consumption (CPU, garbage collection, etc) |
| 104 | + + JVM has implementation limit on number of allowed threads, will throw |
| 105 | + `OutOfMemoryError` upon hitting this limit which is hard to recover from |
| 106 | +- `Executor`: separates task submission from task execution. |
| 107 | +- Tasks are wrapped in Runnable or Callable and submitted to an executor. |
| 108 | +- Lifecycle of a task submitted to an executor: |
| 109 | + 1. Created |
| 110 | + 2. Submitted |
| 111 | + 3. Started |
| 112 | + 4. Completed |
| 113 | +- ExecutionException: exception in which a tasks exception gets wrapped when a |
| 114 | + thread calls task's future.get |
76 | 115 | - RejectedExecutionException: exception thrown when a task submitted to an
|
77 | 116 | executor is not run.
|
| 117 | +- `Executor` interface: |
| 118 | + + `execute(Runnable)` |
| 119 | + |
| 120 | +# Chapter 7 |
| 121 | +- Threads in blocked state throw `InterruptedException`, if a thread is not |
| 122 | + blocked state and gets interrupted, then the thread's interrupted status flag |
| 123 | + is set but no exception is thrown. |
| 124 | +- Swallowing the `InterruptedException` is bad practise as swallowing makes it |
| 125 | + not possible for methods up the call stack to interrupt a thread. |
| 126 | +- `Thread.interrupted()` fetch and clear the interruption status flag. |
| 127 | +- `Thread.interrupt()` set the interruption status flag and cause an |
| 128 | + `InterruptedException` in invoked thread if blocked. |
| 129 | +- Either a thread should propogate the `InterruptedException` or reset the |
| 130 | + interruption status using `Thread.currentThread().interrupted()` |
| 131 | +- Tasks do not execute in threads they own; they borrow threads owned by a |
| 132 | + service such as a thread pool. Code that doesn’t own the thread (for a thread |
| 133 | + pool, any code outside of the thread pool implementation) should be careful |
| 134 | + to preserve the interrupted status so that the owning code can eventually act |
| 135 | + on it, even if the “guest” code acts on the interruption as well. |
| 136 | +- You should know a thread’s interruption policy before interrupting it. |
78 | 137 |
|
79 | 138 | # Chapter 14
|
80 | 139 | - Use `wait`, `notify`, `notifyAll` on any `Object` for conditional variables.
|
0 commit comments