Java Executors framework APIs tutorial

preview_player
Показать описание
In this video tutorial, we will learn about Java Executors framework APIs.
Executors, A framework for creating and managing threads. Executors framework helps you with –
 Thread Creation: It provides various methods for creating threads, more specifically a pool of threads, that your application can use to run tasks concurrently.
 Thread Management: It manages the life cycle of the threads in the thread pool. You don’t need to worry about whether the threads in the thread pool are active or busy or dead before submitting a task for execution.
 Task submission and execution: Executors framework provides methods for submitting tasks for execution in the thread pool, and also gives you the power to decide when the tasks will be executed. For example, You can submit a task to be executed now or schedule them to be executed later or make them execute periodically.
Рекомендации по теме
Комментарии
Автор

Very simple and easy for Executor framework basics.Good Job.

oldshyari
Автор

Hi Kishan.
First of all, congrats for the good work.
I can see there are several tutorials on multi threading. Although the content is good, but it confuses the readers as the reader dont know what to read next. It will be better if you define the sequence to go through in the beginning of the Chapter Or in the end after every video you can specify what is the next video to learn.

Once again, kudos man. Please don't take it negatively, it is just a suggestion.

niketkumar
Автор

What is difference between cron jobs and scheduler in java?

ganeshbodduaddasuryanitinb