donaricano-btn

Thread Scheduler


1. What is it?

- Thread scheduler is the part of the JVM that decides which thread should run

- Only one thread at a time can run in a single process

- The Thread scheduler mainly uses preemptive or time slicing scheduling to schedule the threads


2. Different between preemptive and time slicing

1) preemptive

- The highest priority task executes until it enters the waiting or dead states

- A higher priority task comes into existence

2) time slicing

- A task executes for a predefined slice of time and then reenters the pool of ready tasks

- The scheduler then determines which task should execute next, based on priority and other factors


'Back-End > Java_1' 카테고리의 다른 글

[Java] Call a run() directly instead start()  (0) 2016.10.07
[Java] Sleeping a thread  (0) 2016.10.07
[Java] Creating thread  (0) 2016.10.05
[Java] Life cycle of a thread  (0) 2016.10.05
[Java] Multithreading in java  (0) 2016.10.05
블로그 이미지

리딩리드

,