Java Concurrency - modern examples, tutorials, excersies, turn-based applications

I want to learn the functions of libraries java.util.concurrent(so all old or non-java specific to me are not parameters).

I know the basics and the theory of concurrency and multithreading, I am not looking for a theory.

Now I read Java concurrency in practice . Honestly, I am completely disappointed with the examples in this book. They are too short and simple and "dummy" for me. I am looking for some useful Java 5+ concurrency examples and exercises.

Is there something similar? I am very afraid that if I do not use what I learned in JCIP very soon, I will forget this to a large extent: /

+3
source share
4

, . , - . , . , .

+1

GitHub ( )?

, . , "java concurrency" .

- Java. Tomcat Quartz ( , Java 5 concurrency per se). , .

+2

Java Concurrency , , " " . . .

concurrency; .

0

, concurrency "

:

LMAX Disruptor:

concurrency. , utils, .

Google Guava Parallel Package :

They graced Futures and Executor interfaces to offer primitives based on real-world real-world events. At the core of their structure is a good understanding of java concurrency classes and design patterns.

The general state of concurrency is not the only flavor; you might also like to check which actor-based frameworks, for example. AKKA . Such concurrent programming is called concurrency messaging .

0
source

Source: https://habr.com/ru/post/1795077/


All Articles