Callable
1346 단어 callable
Executor Service Callable Complete Service 의 관계
레 퍼 런 스
http://blog.csdn.net/yanhandle/article/details/9037401
public List<StatisticErrorBean> statisticAllProducerLog(
final String reportS, final String[] urls) throws IOException,
ParseException, InterruptedException, ExecutionException {
List<StatisticErrorBean> resultList = new ArrayList<StatisticErrorBean>();
final String mainFolder = "/opt/sasuapps/itrc/logs";
// use multi thread to filter/download/parser log
ExecutorService es = Executors.newFixedThreadPool(10);
CompletionService<List<StatisticErrorBean>> cs = new ExecutorCompletionService<List<StatisticErrorBean>>(
es);
for (final String url : urls) {
cs.submit(new ProducerErrorFuture(url, client, mainFolder, reportS,
this));
}
for (int i = 0; i < urls.length; i++) {
List<StatisticErrorBean> list = cs.take().get();
combineList(resultList, list);
}
es.shutdown();
return resultList;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
함수 학습 - callable ()중국어 설명: 대상object가 호출될 수 있는지 확인합니다.True로 돌아가면 object 호출이 실패할 수 있습니다.그러나 False를 반환하면 호출된 객체 ojbect는 절대 성공하지 않습니다. 주의: 클래스는...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.