public static void setThread(Runnable thread) { tp.add(thread); }
public static void startThread() { tp.start(); }
public static void stopThread() { tp.stop(); }
public static void setThread(Thread thread, int second) { tp = new IThreadPoolFixedImpl(second); tp.add(thread); }