实时政策接口取政策

要求传一个航班条件,实时的去查询51BOOK接口的政策和8000YI接口的政策,并返回结果。
为了性能问题,需要并行的去查两边的接口,最后合并返回结果。要个线程并行查政策的时候需要设置超时时间,如果超过设定的时间则不取该接口的政策。


示例代码:



package cn.tempus.prodcloud.service.qr;

import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.Future;
import java.util.concurrent.TimeUnit;

public class App {

public static ExecutorService pool = Executors.newCachedThreadPool();//定义线程池

public static void main(String[] args) {

//定义任务集合
List<Callable<Integer>> tasks = new ArrayList<Callable<Integer>>();
//定义51BOOK任务,实际用时根据需要去改
Callable<Integer> a51BOOK = new Callable<Integer>() {

public Integer call() throws Exception {
System.out.println("---111");
TimeUnit.SECONDS.sleep(3);
System.out.println("等等呀...");
return 1;
}
};
tasks.add(a51BOOK);

Callable<Integer> b8000Yi = new Callable<Integer>() {

public Integer call() throws Exception {
System.out.println("---9999");
TimeUnit.SECONDS.sleep(1);
System.out.println("---9999");
return 9999;
}
};
tasks.add(b8000Yi);

try {
//调用并返回所有任务,超时时间为2秒
List<Future<Integer>> futures = pool.invokeAll(tasks, 2, TimeUnit.SECONDS);
for (Future<Integer> fs : futures) {
Integer res;
try {
if (fs == null) {
System.out.println("null....");
}
res = fs.get();
System.out.println("返回结果:" + res);

} catch (Exception e) {
System.out.println(e.getMessage());
}
}
} catch (InterruptedException e) {
}
pool.shutdown();

System.out.println("我是不是真的在等待...");
}

}



执行返回结果:


---111
---9999
---9999
null
返回结果:9999
我是不是真的在等待...


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值