17 OCT 2024 - Welcome Back to TorrentFunk! Get your pirate hat back out. Streaming is dying and torrents are the new trend. Account Registration works again and so do Torrent Uploads. We invite you all to start uploading torrents again!
TORRENT DETAILS
Udemy - A Guide To Java Concurrency
TORRENT SUMMARY
Status:
All the torrents in this section have been verified by our verification system
Master the art of writing concurrent program in java
What you'll learn
You will learn java concurrency framework
You will understand the java memory model, thread safety, atomicity, inter-thread communication
You will understand Immutability and it's usage
You will learn about executors, thread pools, producer consumer pattern.
You will learn about the high level concurrency objects such as CountDownLatch, CyclicBarrier, Semaphore, Exchanger and Phaser.
You will understand what is deadlock and how to resolve it.
You will understand java collections framework and some of the concurrent collections provided by java concurrency framework.
You will learn about the atomic classes of java concurrency framework.
You will get to know the difference between blocking and non-blocking algorithms.
You will learn how to build your own synchronizer using AbstractQueuedSynchronizer
Requirements
You should know the fundamentals of programming.
You should be already familiar with java programming and it’s syntax.
You should be familiar with any programming language and having prior experience with java is plus.
If You Need More Stuff, kindly Visit and Support Us -->> https://CourseWikia.com
Get More Tutorials and Support Us -->> https://FreeCourseWeb.com
We upload these learning materials for the people from all over the world, who have the talent and motivation to sharpen their skills/ knowledge but do not have the financial support to afford the materials. If you like this content and if you are truly in a position that you can actually buy the materials, then Please, we repeat, Please, Support Authors. They Deserve it! Because always remember, without "Them", you and we won't be here having this conversation. Think about it! Peace...
VISITOR COMMENTS (0 )
FILE LIST
Filename
Size
~Get Your Files Here !/01 - Introduction/001 Introduction.mp4
32.1 MB
~Get Your Files Here !/01 - Introduction/001 java-concurrency-toc.pdf
36.5 KB
~Get Your Files Here !/01 - Introduction/002 Concurrency vs Parallelism.mp4
24.2 MB
~Get Your Files Here !/01 - Introduction/002 concurrency-parallelism.png
209.3 KB
~Get Your Files Here !/01 - Introduction/003 Race Condition.mp4
11.9 MB
~Get Your Files Here !/01 - Introduction/003 race-condition.png
119.2 KB
~Get Your Files Here !/01 - Introduction/004 Java Memory Model.mp4
44.9 MB
~Get Your Files Here !/01 - Introduction/004 java-memory-model.png
301.7 KB
~Get Your Files Here !/01 - Introduction/005 Java Memory Model Demo.mp4
143.5 MB
~Get Your Files Here !/01 - Introduction/006 Thread Safety.mp4
32.2 MB
~Get Your Files Here !/01 - Introduction/006 thread-safety.png
276.5 KB
~Get Your Files Here !/01 - Introduction/007 Atomicity Volatile Synchronized.mp4
10.6 MB
~Get Your Files Here !/01 - Introduction/008 Atomic Continued.mp4
16.7 MB
~Get Your Files Here !/01 - Introduction/008 atomic-2.png
156 KB
~Get Your Files Here !/01 - Introduction/009 Atomicity Volatile Synchronized Demo.mp4
141.2 MB
~Get Your Files Here !/01 - Introduction/010 Immutable.mp4
22.8 MB
~Get Your Files Here !/01 - Introduction/010 immutable.png
279.6 KB
~Get Your Files Here !/01 - Introduction/011 Immutable Demo.mp4
125.5 MB
~Get Your Files Here !/02 - Non Blocking Algorithms/001 Atomic Classes.mp4
14.6 MB
~Get Your Files Here !/02 - Non Blocking Algorithms/001 atomic-classes.png
154.5 KB
~Get Your Files Here !/02 - Non Blocking Algorithms/002 Atomic Classes Demo.mp4
101.6 MB
~Get Your Files Here !/03 - Threads/001 Threads Lifecycle Demo.mp4
106 MB
~Get Your Files Here !/03 - Threads/002 Inter Thread Communication (wait, notify and notifyAll).mp4
8.5 MB
~Get Your Files Here !/03 - Threads/002 inter-thread-communication.png
113.6 KB
~Get Your Files Here !/03 - Threads/003 Inter Thread Communication Demo.mp4
93.3 MB
~Get Your Files Here !/04 - Executors & ThreadPools/001 Executors.mp4
13 MB
~Get Your Files Here !/04 - Executors & ThreadPools/001 executorservice.png
176.8 KB
~Get Your Files Here !/04 - Executors & ThreadPools/002 Executors Demo.mp4
106.4 MB
~Get Your Files Here !/04 - Executors & ThreadPools/003 ThreadPoolExecutor.mp4
20.7 MB
~Get Your Files Here !/04 - Executors & ThreadPools/003 threadpoolexecutor.png
204.4 KB
~Get Your Files Here !/04 - Executors & ThreadPools/004 ThreadPoolExecutor Demo.mp4
154.2 MB
~Get Your Files Here !/04 - Executors & ThreadPools/005 fork-join-pool.png
186.8 KB
~Get Your Files Here !/04 - Executors & ThreadPools/005 ForkJoinPool.mp4
23.4 MB
~Get Your Files Here !/04 - Executors & ThreadPools/006 ForkJoinPool Demo.mp4
139.2 MB
~Get Your Files Here !/04 - Executors & ThreadPools/007 Producer Consumer.mp4
16.3 MB
~Get Your Files Here !/04 - Executors & ThreadPools/008 Producer Consumer Demo.mp4
100.7 MB
~Get Your Files Here !/05 - Locks/001 locks-2.png
332.3 KB
~Get Your Files Here !/05 - Locks/001 Locks.mp4
44.1 MB
~Get Your Files Here !/05 - Locks/002 Locks Demo.mp4
90.7 MB
~Get Your Files Here !/05 - Locks/003 DeadLock.mp4
33 MB
~Get Your Files Here !/05 - Locks/003 deadlock.png
336.6 KB
~Get Your Files Here !/05 - Locks/004 DeadLock Demo.mp4
71.8 MB
~Get Your Files Here !/05 - Locks/005 DeadLock Demo Continued.mp4
89.1 MB
~Get Your Files Here !/05 - Locks/006 DeadLock Demo Continued.mp4
79 MB
~Get Your Files Here !/06 - High Level Concurrency/001 countdown-latch.png
87.8 KB
~Get Your Files Here !/06 - High Level Concurrency/001 CountDownLatch.mp4
6.7 MB
~Get Your Files Here !/06 - High Level Concurrency/002 CountDownLatch Demo.mp4
18.5 MB
~Get Your Files Here !/06 - High Level Concurrency/003 cyclic-barrier.png
164.6 KB
~Get Your Files Here !/06 - High Level Concurrency/003 CyclicBarrier.mp4
8.1 MB
~Get Your Files Here !/06 - High Level Concurrency/004 CyclicBarrier Demo.mp4
108.6 MB
~Get Your Files Here !/06 - High Level Concurrency/005 Semaphore.mp4
10.5 MB
~Get Your Files Here !/06 - High Level Concurrency/005 semaphore.png
106.3 KB
~Get Your Files Here !/06 - High Level Concurrency/006 Semaphore Demo.mp4
58.7 MB
~Get Your Files Here !/06 - High Level Concurrency/007 Phaser.mp4
23 MB
~Get Your Files Here !/06 - High Level Concurrency/007 phaser.png
199.6 KB
~Get Your Files Here !/06 - High Level Concurrency/008 Phaser Demo.mp4
92.2 MB
~Get Your Files Here !/06 - High Level Concurrency/009 Exchanger.mp4
5.8 MB
~Get Your Files Here !/06 - High Level Concurrency/009 exchanger.png
63.2 KB
~Get Your Files Here !/06 - High Level Concurrency/010 Exchanger Demo.mp4
149.4 MB
~Get Your Files Here !/07 - Custom Synchronizer/001 abstractqueuedsynchronizer.png
144.4 KB
~Get Your Files Here !/07 - Custom Synchronizer/001 Build your own synchronizer.mp4
14.6 MB
~Get Your Files Here !/07 - Custom Synchronizer/002 Build your synchronizer using AbstractQueuedSynchronizer.mp4
176.6 MB
~Get Your Files Here !/08 - Collections & Concurrency/001 Collections & Concurrency.mp4
25.9 MB
~Get Your Files Here !/08 - Collections & Concurrency/001 collections-concurrency.png
232.4 KB
~Get Your Files Here !/08 - Collections & Concurrency/002 Collections & Concurrency Continued.mp4
67.9 MB
~Get Your Files Here !/08 - Collections & Concurrency/002 collections-concurrency2.png
380.7 KB
~Get Your Files Here !/09 - Problems & Assignments/001 Print ZeroOddEven.mp4
10.6 MB
~Get Your Files Here !/09 - Problems & Assignments/001 zero-odd-even.png
202.6 KB
~Get Your Files Here !/09 - Problems & Assignments/002 Print ZeroOddEven Demo.mp4