在下面的代码中,我的主要任务是不等待子任务完成其执行。我是Java Thread的新手。所以我无法解决它。我谷歌它,发现没有运气。请帮我解决这个线程问题。 代码:
class ExecutorServiceManager{
public static ExecutorService getExecutor() {
if (executorService == null) {
try {
lock.lock();
if (executorService == null) {
executorService = Executors.newFixedThreadPool(150);
}
} finally {
lock.unlock();
}
}
if(executorService instanceof ThreadPoolExecutor) {
ThreadPoolExecutor threadPoolExecutor = (ThreadPoolExecutor) executorService;
int corePoolSize = threadPoolExecutor.getCorePoolSize();
int maximumPoolSize = threadPoolExecutor.getMaximumPoolSize();
Logger.info(ExecutorServiceManager.class, "ExecutorInfo: CorePoolSize:%s, MaxPoolSize:%s", corePoolSize, maximumPoolSize);
}
return executorService;
}}
class ServiceImpl{
ExecutorServiceManager executorServiceManager;
private void processConversion(String category, Map<String, String> couchDeltaMap, String processKey, String reqId) {
try {
ProgressVo progressVo = new ProgressVo();
CountDownLatch pgCntxtcountDownLatch = new CountDownLatch(1);
executorServiceManager.getExecutor().submit(new MainTask(category, processKey, pgCntxtcountDownLatch, executorServiceManager, progressVo));
Logger.info(ServiceImpl.class, "ExecutorInfo: CorePoolSize:%s, MaxPoolSize:%s", corePoolSize, maximumPoolSize);
pgCntxtcountDownLatch.await();
} catch(InterruptedException ie) {}
catch(Exception ex) {}
}}
class MainTask implements Runnable{
@Override
public void run() {
executorService = executorServiceManager.getExecutor();
executorService.submit(new SubTask(progressVo, couchDeltaMap, reqId, executorServiceManager));
//I want the below operation to be executed, if and only the subtask completed its execution.
//But the below logger is printing before the subtask completed its execution.
Logger.info(MainTask.class, "It got executed before the subtask completed its processing");
pgCntxtcountDownLatch.countDown();
}}
class SubTask implements Runnable{
@Override
public void run() {
executorService = executorServiceManager.getExecutor();
doSomeProcess;
//It stopped in the middle, and the Main task started executing the remaining operation
}}
答案 0 :(得分:0)
要让主要任务等待子任务执行,您可以这样使用Future返回的Executor.submit():
class MainTask implements Runnable{
@Override
public void run() {
executorService = executorServiceManager.getExecutor();
Future subTask = executorService.submit(new SubTask(progressVo, couchDeltaMap, reqId, executorServiceManager));
try{
subTask.get(); //wait for completion of the subtask
} catch(Exception e){
//You probably want better exception catching, this is just an example
}
Logger.info(MainTask.class, "It got executed before the subtask completed its processing");
pgCntxtcountDownLatch.countDown();
}}
答案 1 :(得分:0)
class MainTask implements Runnable{
@Override
public void run() {
executorService = manager.getExecutor();
List<Future<Runnable>> futures = new ArrayList<Future<Runnable>>();
while (!pageCntxts.isEmpty()) {
popped = pageCntxts.pop();
Future future = executorService.submit(new SubTask(progressVo, couchDeltaMap, reqId,manager));
futures.add(future);
if(pageCntxts.isEmpty())
loadPageCntxtWithNext25Records(progressVo);
processNum++;
}
Logger.debug(MainTask.class, "Internal Thread Running Starts with data size: "+futures.size());
for (Future<Runnable> future : futures) {
future.get();
}
Logger.debug(MainTask.class, "Internal Thread Running Ends");}}