Заготовка планировщика.

This commit is contained in:
2023-09-26 22:57:18 +03:00
parent 6df3eb05ee
commit 0026701347
5 changed files with 118 additions and 7 deletions

View File

@@ -0,0 +1,10 @@
package SapforTestingSystem.ThreadTask;
import Common.Utils.Utils;
public class ThreadTask {
public int id = Utils.Nan;
public Thread thread;
public ThreadTask(int id_in, Runnable runnable){
id = id_in;
thread = new Thread(runnable);
}
}