Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Frans Sjöström

Frans Sjöström

Frans Sjöström has asked 0 questions and find answers to 3 problems.

Stats

83
EtPoint
28
Vote count
0
questions
3
answers

About

public static void main(String[] args){

    Thread spareTime = new Thread(() -> sideMission());

    Thread.currentThread().setPriority(10);
    spareTime.setPriority(1000);

    necessaryLifeRelatedTasks();
    spareTime.start();
}