Java ExecutorService - Part 1

  Рет қаралды 51,711

Jakob Jenkov

Jakob Jenkov

Күн бұрын

The Java ExecutorService interface, java.util.concurrent.ExecutorService, represents an asynchronous execution mechanism, essentially a thread pool, which is capable of executing tasks concurrently in the background. In this Java ExecutorService tutorial I explore how to create an ExecutorService instance, what methods it has, how to shut it down etc.
Chapters:
0:00 Java ExecutorService introduction
0:28 Java ExecutorService example
4:02 Java ExecutorService implementations
5:46 Java ThreadPoolExecutor constructor explained
8:16 Java ExecutorService methods
9:36 Java ExecutorService submit(Runnable) method
12:12 Java ExecutorService submit(Callable) method
14:23 How a Future object is connected to a task
15:23 Java ExecutorService invokeAny() method
18:10 Java ExecutorService invokeAll() method
Java ExecutorService - Part 2
• Java ExecutorService -...
Java ExecutorService Using Virtual Threads Internally:
• Java ExecutorService U...
Java ExecutorService - Text:
tutorials.jenkov.com/java-util...
Java Concurrency - Text / Video Playlist
tutorials.jenkov.com/java-conc...
tutorials.jenkov.com/java-util...
• Java Concurrency and M...

Пікірлер: 57
@MoZaHo
@MoZaHo Жыл бұрын
Best description and video of the ExecuterService on the internet. Helped a great load. Thank you
@JakobJenkov
@JakobJenkov Жыл бұрын
Thank you very much for your kind words! :-) ... and for taking the time to tell me! :-)
@fatihmehmetkose
@fatihmehmetkose 3 жыл бұрын
Thanks Jacob! this is the best explanation of ExecuterService and Callable I have seen...
@JakobJenkov
@JakobJenkov 3 жыл бұрын
Thank you! I am happy my video was helpful to you! Actually, the video is a re-recording of an old video about the Java ExectutorService which I felt could be improved. Seems like it was indeed an improvement from the old version :-)
@BtXFWkyZBtXFWkyZ
@BtXFWkyZBtXFWkyZ 3 жыл бұрын
Reminder is set, thanks for the content sir
@JakobJenkov
@JakobJenkov 3 жыл бұрын
Always welcome :-)
@sam_paul
@sam_paul 3 жыл бұрын
Very well explained.. Thank you very much !
@JakobJenkov
@JakobJenkov 3 жыл бұрын
You are welcome! :-)
@user-sr6io6bz4h
@user-sr6io6bz4h 2 жыл бұрын
I love your tutorial web site and also like this video ! It's really helpful. Thanks a lot !
@JakobJenkov
@JakobJenkov 2 жыл бұрын
You are welcome! Glad you like it all! :-)
@sumanshekhar8110
@sumanshekhar8110 Күн бұрын
I think invokeAny() starts executing all the task in the Colection, and returns the o/p of the task which completed First. After this all the tasks are canceled. Btw thanks for the awesome explaination. We want more of your knowledge :p
@JakobJenkov
@JakobJenkov 22 сағат бұрын
Thanks - and thanks for the input !! These constructs are sometimes a bit hard to get to know correctly 😊
@mouradlaraba
@mouradlaraba 3 жыл бұрын
Thnaks a lot sir your courses are very helpfull, you are very generous in sharing your knowledge with us thnaks a lot
@JakobJenkov
@JakobJenkov 3 жыл бұрын
You are most welcome! :-) ... I hope my videos help you!
@Jagan3559
@Jagan3559 5 ай бұрын
It was very nicely put and easy to understand
@JakobJenkov
@JakobJenkov 5 ай бұрын
Thank you ! I am happy you feel like that ! :-)
@LuneAgent
@LuneAgent 2 жыл бұрын
Great Scott! We can get a result back from the future!
@JakobJenkov
@JakobJenkov 2 жыл бұрын
:-) ... well, not to ruin your pun - but it's probably more correct to say that we wait for the Future to become the present and then we obtain the result ;-)
@LuneAgent
@LuneAgent 2 жыл бұрын
@@JakobJenkov Yeah, I know how it works, but it sounds great when described that way :)
@garimadhanania1853
@garimadhanania1853 2 ай бұрын
great content as always!
@JakobJenkov
@JakobJenkov 2 ай бұрын
Thank you !! 😊😊😊
@ahmetbcakici
@ahmetbcakici 8 ай бұрын
Thanks for the content! It ıs really so useful and easy to understand.
@JakobJenkov
@JakobJenkov 7 ай бұрын
Thanks! I am glad you feel that way ! :-)
@tomasma4896
@tomasma4896 3 жыл бұрын
Thanks a lot for these videos. I am programming few years in Java but there is always something new I learn from your videos or from your web site. You definitely deserve more subscribers. Just an advice, maybe instead of old way anonymous classes you could use lambdas. But anyway good job and keep doing!
@JakobJenkov
@JakobJenkov 3 жыл бұрын
Hi Tomas, thank you for your kind words! :-) ... in this video I chose to use anonymous classes instead of lambdas to make it 100% clear that it is the Runnable / Callable interface that are being implemented! In my own code I would most likely use lambdas - but for instructional purposes I often simplify the code somewhat - to keep focus on the important parts. By the way, I also often learn something new when I write tutorials or make videos :-)
@mdshafi7043
@mdshafi7043 3 жыл бұрын
Sir , Can you please make a video or 2 on deadlock situation in multithreading and how to handle them in java ? Your videos are very helpful.I understand multithreading well by watching your videos
@JakobJenkov
@JakobJenkov 3 жыл бұрын
Hmm... I probably could :-) ... I think I will get to that topic soon.
@karthik8159
@karthik8159 Жыл бұрын
Thank you.
@JakobJenkov
@JakobJenkov Жыл бұрын
You're welcome! :-)
@smitmandavia5044
@smitmandavia5044 5 ай бұрын
Thanks a lot for the video and other videos in this playlist. They are really useful. I think one small suggestion is to clarify that how is this different than thread Pools (explained in previous video). I guess Thread pool was our own simple implementation whereas this is an inbuilt and more nuanced version of it. Please correct me if I am wrong or missed anything.
@JakobJenkov
@JakobJenkov 5 ай бұрын
The Java ExecutorService is very similar to a thread pool. Some of them are implemented as thread pools, but some of them are a bit more advanced, like the ForkAndJoinPool .
@pv2930
@pv2930 2 жыл бұрын
U deserve more subscribers 👍
@JakobJenkov
@JakobJenkov 2 жыл бұрын
Thank you :-)
@yumyumtales
@yumyumtales Жыл бұрын
Great Video❤❤❤
@JakobJenkov
@JakobJenkov Жыл бұрын
Thanks !! 😊
@minasalah8210
@minasalah8210 3 жыл бұрын
thank you
@JakobJenkov
@JakobJenkov 3 жыл бұрын
You are most welcome :-)
@luuvanthao3679
@luuvanthao3679 3 жыл бұрын
greate
@JakobJenkov
@JakobJenkov 3 жыл бұрын
Thanks!
@roman_mf
@roman_mf 2 жыл бұрын
Hi Jakob, thanks for another excellent explanation. I have a question about invokeAny() - you say that it executes one task, but you also that the one that executes fastest gets to send its return value. How does "fastest" work in this case? Do all tasks in a collection run concurrently and they just race for who finishes execution first? invokeAny sounds almost like it just picks one task and has some logic of a failure in execution, like a timeout.
@JakobJenkov
@JakobJenkov 2 жыл бұрын
The ExecutorService will attempt to start as many of the tasks as possible, and whatever task finishes first has its result returned. I don't know the exact logic used internally, unfortunately. I have never needed invokeAny() myself.
@csabadanyiko6096
@csabadanyiko6096 2 жыл бұрын
I really like your videos, great explanation for complex topics. I have one question. For invokeAll() you created a List then you cast it to Collection. Why didn't you just define it as Collection in the first place, is there a particular reason?
@JakobJenkov
@JakobJenkov 2 жыл бұрын
You could probably have created it as a Collection immediately. Sometimes I do stuff in the videos you would not do normally, just to make it more clear what is going on :-)
@devalshah69
@devalshah69 4 ай бұрын
Hey Jakob thanks you for such a detailed video explanation of the Java concurrency. I am not able to find this codes of Executor services in your github repo, is there anyway to get this implementations code?
@JakobJenkov
@JakobJenkov 4 ай бұрын
The ExecutorServive is part of standard Java... so if you have Java, you also have the ExecutorService implementation 😊
@garimadhanania1853
@garimadhanania1853 2 ай бұрын
quick clarification: in the invokeany() call, it could happen that few of the tasks were executing and because of one of them completed and returned the result, the others were aborted? I mean there could be multiple tasks being executed on the different threads right? If only one task is run, it might take a long time to return and that defeats the purpose of using invokeAny() right?
@JakobJenkov
@JakobJenkov 2 ай бұрын
Yes, more than one task might get executed, but invokeAny() returns as soon as one task has finished executing. The motivation to use invokeAny() is to push N tasks out to N CPU cores, to get one of the tasks to finish as fast as possible.
@affeine9267
@affeine9267 11 ай бұрын
Why do we have multiple ThreadPools inside the ExecutorService ? We still can specify number of Threads that ThreadPool executes so why do we need more than one ThreadPool ?
@JakobJenkov
@JakobJenkov 10 ай бұрын
There can be different kinds of implementations of the ExecutorService interface, meaning different implementations of thread pools that behave differently.
@RohanSharma-eh4kf
@RohanSharma-eh4kf 3 жыл бұрын
well i came to this video to understand the inner workings of these interfaces, is there any resources i can follow to understand how things work exactly?
@JakobJenkov
@JakobJenkov 3 жыл бұрын
I have another video about Thread Pools in Java which explains how to make your own thread pool like the ExecutorService, if you want that, or just want to learn how.
@AmeySambhare-ki6do
@AmeySambhare-ki6do 8 ай бұрын
How did invokeAny return String? Should not it return future object of String?
@JakobJenkov
@JakobJenkov 5 ай бұрын
No. invokeAny will return the result of the first of your tasks that finishes. Since the ExecutorService doesn't know which task finishes first, it cannot know which Future object to return to you. Instead, it checks the Future objects internally for results, and as soon as one of the returns a result, that is what is returned.
@manojnavinjamuri5867
@manojnavinjamuri5867 4 ай бұрын
please provide the code too
Java ExecutorService - Part 2
21:32
Jakob Jenkov
Рет қаралды 19 М.
1❤️
00:17
Nonomen ノノメン
Рет қаралды 9 МЛН
I wish I could change THIS fast! 🤣
00:33
America's Got Talent
Рет қаралды 95 МЛН
Wait for the last one! 👀
00:28
Josh Horton
Рет қаралды 127 МЛН
Java ExecutorService - Part 1 - Introduction
10:12
Defog Tech
Рет қаралды 407 М.
The Java Memory Model - The Basics
23:41
Jakob Jenkov
Рет қаралды 120 М.
Thread Pools in Java
18:04
Jakob Jenkov
Рет қаралды 63 М.
This is the Only Right Way to Write React clean-code - SOLID
18:23
Blue Mobile 📲 Best For Long Audio Call 📞 💙
0:41
Tech Official
Рет қаралды 1 МЛН
Что не так с яблоком Apple? #apple #macbook
0:38
Не шарю!
Рет қаралды 371 М.