Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай Java: Multi-threading and Concurrency Simplified, а также все другие курсы, прямо сейчас!
Премиум
  1. Урок 1. 00:01:30
    Introduction
  2. Урок 2. 00:01:29
    Single Threaded vs Multi Threaded Apps
  3. Урок 3. 00:03:12
    Single Threaded App Example
  4. Урок 4. 00:03:30
    True Parallelism vs Logical Parallelism
  5. Урок 5. 00:06:22
    Designing Threads
  6. Урок 6. 00:03:06
    Designing Threads Explained
  7. Урок 7. 00:13:19
    Transform code to achieve parallelism
  8. Урок 8. 00:03:31
    Executor Service
  9. Урок 9. 00:06:15
    Stopping Thread in the middle
  10. Урок 10. 00:03:19
    Thread States
  11. Урок 11. 00:02:22
    Thread Priorities
  12. Урок 12. 00:07:51
    Internal System Threads and ThreadGroup
  13. Урок 13. 00:03:01
    Daemon Threads
  14. Урок 14. 00:08:41
    Callable Task
  15. Урок 15. 00:09:31
    Pattern search in folder - Serial approach
  16. Урок 16. 00:10:04
    Pattern search in folder - Parallel approach
  17. Урок 17. 00:01:06
    Problem Set - 1
  18. Урок 18. 00:05:05
    Need for Synchronization
  19. Урок 19. 00:08:10
    Synchronized methods
  20. Урок 20. 00:03:19
    Synchronized in case of static members
  21. Урок 21. 00:05:55
    The Problem with Synchronized Method and Solution with Synchronized Block
  22. Урок 22. 00:06:44
    Deadlocks and solution with lock sequencing
  23. Урок 23. 00:03:29
    Reentrant Locks
  24. Урок 24. 00:02:33
    Thread Signaling Using wait and notify
  25. Урок 25. 00:05:14
    Producer and Consumer Problem
  26. Урок 26. 00:15:52
    HTTP and Mock multi-threaded HTTP Server
  27. Урок 27. 00:07:00
    ThreadLocal
  28. Урок 28. 00:06:24
    BlockingQueue and revised producer and consumer problem
  29. Урок 29. 00:07:52
    PriorityBlockingQueue
  30. Урок 30. 00:13:00
    Fork Join Framework
  31. Урок 31. 00:07:33
    Semaphore
  32. Урок 32. 00:14:00
    CountDownLatch
  33. Урок 33. 00:07:09
    CyclicBarrier
  34. Урок 34. 00:12:09
    Atomic Types (AtomicInteger, AtomicBoolean....)
  35. Урок 35. 00:06:02
    Scale up using Queues
  36. Урок 36. 00:02:26
    Heads up about Distributed Locks