我有实现 Runnable 的类
public class MyRunnable implements Runnable {
private long RID = <SOME_LONG_ID_VALUE>;
public long getRID() { return this.RID; }
public void run {
System.out.println("HAI!");
}
}
有没有办法ThreadPoolExecutor
按RID
字段“路由”内部任务(我的意思是,如果线程 N 3 运行 Runnable with RID = 1
,那么下一个 tast withRID = 1
必须由线程 N 3 执行(如果它还活着))谢谢。