-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME.html
More file actions
32 lines (30 loc) · 1.81 KB
/
README.html
File metadata and controls
32 lines (30 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<html>
<head>
<link href="../../styles.css" rel="stylesheet"></link>
</head>
<body>
<h1 id="chapter-7-concurrency">Chapter 7 - Concurrency</h1>
<h3 id="-contents-">📜 Contents 📜</h3>
<ul>
<li><a href="/src/chapter_7/c_7_1_introducingThreads/">🧠 7.1 Introducing Threads</a></li>
<li><a href="/src/chapter_7/c_7_2_creatingThreadsWithTheExecutorService/">🧠 7.2 Creating Threads with the ExecutorService</a></li>
<li><a href="/src/chapter_7/c_7_3_synchronizingDataAccess/">🧠 7.3 Synchronizing Data Access</a></li>
<li><a href="/src/chapter_7/c_7_4_usingConcurrentCollections/">🧠 7.4 Using Concurrent Collections</a></li>
<li><a href="/src/chapter_7/c_7_5_workingWithParallelStreams/">🧠 7.5 Working with Parallel Streams</a></li>
<li><a href="/src/chapter_7/c_7_6_managingConcurrentProcesses/">🧠 7.6 Managing Concurrent Processes</a></li>
<li><a href="/src/chapter_7/c_7_7_identifyingThreadingProblems/">🧠 7.7 Identifying Thread Problems</a></li>
<li><a href="/src/chapter_7/revisionNotes/">📝Revision Notes</a></li>
<li><a href="/src/review_questions/chapter_7/">✅ Review Questions</a></li>
</ul>
<hr>
<h3 id="-exam-objectives-">🎯 Exam Objectives 🎯</h3>
<ul>
<li>Create worker threads using Runnable, Callable,, and use an ExecutorService to concurrently execute tasks.</li>
<li>Identify potential threading problems among deadlock, starvation, livelock and race conditions</li>
<li>Use synchronized keyword and <code>java.util.concurrent.atomic</code> package to control the order of thread execution</li>
<li>Use <code>java.util.concurrent</code> collections and classes including CyclicBarrier and CopyOnWriteArrayList</li>
<li>Use parallel Fork/Join Framework</li>
<li>Use parallel Streams including reduction, decomposition, merging processes, pipelines, and performance</li>
</ul>
</body>
</html>