Home | History | Annotate | Download | only in utils

Lines Matching refs:task

38   public static void waitThread(Thread worker, Runnable task)
41 m_tpool.waitThread(worker, task);
54 * Will get a thread from the pool, execute the task
60 * NEEDSDOC @param task
61 * @param priority if >0 the task will run with the given priority
63 * @return The thread that is running the task, can be used
66 public Thread run(Runnable task, int priority)
69 Thread t = new Thread(task);
79 * Wait until the task is completed on the worker
83 * NEEDSDOC @param task
87 public void waitThread(Thread worker, Runnable task)