在从 StackOverflow 获得帮助后,我找到了我在下面实现的解决方案。
问题陈述:-
每个线程每次都需要使用UNIQUE ID
,并且必须运行60 minutes
或更长时间,因此60 minutes
有可能所有线程都ID's
将完成,因此我需要ID's
再次重用它们。所以我在ArrayBlockingQueue
这里使用概念。
两种情况:-
- 如果
command.getDataCriteria()
包含Previous
,那么每个线程总是需要在UNIQUE ID
之间使用1 and 1000
并释放它以再次重用。 - 否则,如果
command.getDataCriteria()
包含New
,那么每个线程总是需要在UNIQUE ID
之间使用2000 and 3000
并释放它以再次重用。
问题:-
我刚刚注意到的一件奇怪的事情是 - 在下面的 else if 循环中,如果你在 run 方法中看到我的下面的代码,command.getDataCriteria() is Previous
那么它也被输入到else if block(which is for New)
其中不应该发生的事情,因为我正在做一个.equals check
?为什么会这样?
else if(command.getDataCriteria().equals(PDSLnPConstants.DATA_CRITERIA_NEW)) {
以下是我的代码: -
class ThreadNewTask implements Runnable {
private Command command;
private BlockingQueue<Integer> existPool;
private BlockingQueue<Integer> newPool;
private int existId;
private int newId;
public ThreadNewTask(Command command, BlockingQueue<Integer> pool1, BlockingQueue<Integer> pool2) {
this.command = command;
this.existPool = pool1;
this.newPool = pool2;
}
public void run() {
if(command.getDataCriteria().equals(PDSLnPConstants.DATA_CRITERIA_PREVIOUS)) {
try {
existId = existPool.take();
someMethod(existId);
} catch (Exception e) {
System.out.println(e);
} finally {
existPool.offer(existId);
}
} else if(command.getDataCriteria().equals(PDSLnPConstants.DATA_CRITERIA_NEW)) {
try {
newId = newPool.take();
someMethod(newId);
} catch (Exception e) {
System.out.println(e);
} finally {
newPool.offer(newId);
}
}
}
// And this method needs to be synchronized or not?
private synchronized void someMethod(int i) {
System.out.println();
System.out.println("#####################");
System.out.println("Task ID: " +i);
System.out.println("#####################");
System.out.println();
}
}
public class TestingPool {
public static void main(String[] args) throws InterruptedException {
int size = 10;
int durationOfRun = 60;
LinkedList<Integer> availableExistingIds = new LinkedList<Integer>();
LinkedList<Integer> availableNewIds = new LinkedList<Integer>();
for (int i = 1; i <= 1000; i++) {
availableExistingIds.add(i);
}
for (int i = 2000; i <= 3000; i++) {
availableNewIds.add(i);
}
BlockingQueue<Integer> existIdPool = new ArrayBlockingQueue<Integer>(1000, false, availableExistingIds);
BlockingQueue<Integer> newIdPool = new ArrayBlockingQueue<Integer>(1000, false, availableNewIds);
// create thread pool with given size
ExecutorService service = new ThreadPoolExecutor(size, size, 500L, TimeUnit.MILLISECONDS, new ArrayBlockingQueue<Runnable>(10), new ThreadPoolExecutor.CallerRunsPolicy());
// queue some tasks
long startTime = System.currentTimeMillis();
long endTime = startTime + (durationOfRun * 60 * 1000L);
// Running it for 60 minutes
while(System.currentTimeMillis() <= endTime) {
Command nextCommand = getNextCommandToExecute();
service.submit(new ThreadNewTask(nextCommand, existIdPool, newIdPool));
}
// wait for termination
service.shutdown();
service.awaitTermination(Long.MAX_VALUE, TimeUnit.DAYS);
}
}
更新:-
我刚刚注意到的一件奇怪的事情是 - 在下面的else if loop
if command is Previous
then 中,它也被输入到 else if 块中,这不应该发生对吗?为什么会这样?我不知道为什么会发生这种情况?
else if(command.getDataCriteria().equals(PDSLnPConstants.DATA_CRITERIA_NEW)) {