CompletableFuture封装

CompletableFuture封装

CompletableTasks

在工作上经常会在接口中请求多个RPC请求,通过completableFuture 进行优化

public class CompletableTasks {

    private List<CompletableFuture<?>> tasks;

    public CompletableTasks() {
        tasks = new ArrayList<>();
    }


    /**
     * 填加任务
     * @param supplier
     * @return
     * @param <T>
     */
    public <T> CompletableTasks addTask(Supplier<T> supplier) {
        return addTask(supplier, null);
    }


    /**
     * 填加任务
     * @param future
     * @return
     * @param <T>
     */
    public <T> CompletableTasks addTask(CompletableFuture<T> future) {
        tasks.add(future);
        return this;
    }

    public <T> CompletableTasks addTask(Supplier<T> supplier, Executor executor) {
        CompletableFuture<T> future;
        if (executor != null) {
            future = CompletableFuture.supplyAsync(supplier, executor);
        } else {
            future = CompletableFuture.supplyAsync(supplier);
        }
        tasks.add(future);
        return this;
    }

    /**
     * 阻塞调用
     * @throws ExecutionException
     * @throws InterruptedException
     * @throws TimeoutException
     */
    public void executeJoin() throws ExecutionException, InterruptedException, TimeoutException {
        execute(null,null,null);
    }


    /**
     * 
     * @param timeout
     * @param timeUnit
     * @param callBack 回调函数
     * @throws ExecutionException
     * @throws InterruptedException
     * @throws TimeoutException
     */

    public void execute(Long timeout, TimeUnit timeUnit, Consumer<List<Object>> callBack) throws ExecutionException,
            InterruptedException,
            TimeoutException {
        CompletableFuture<?> future = CompletableFuture.allOf(tasks.toArray(new CompletableFuture[0]))
                .whenComplete((v, t) -> {
                    if (t!=null){
                        throw new BizException(BizCode.SEVER_ERROR.getCode(),BizCode.SEVER_ERROR.getMsg());
                    }
                    List<Object> result = new ArrayList<>();
                    for (CompletableFuture<?> task : tasks) {
                        result.add(task.getNow(null));
                    }
                    if (callBack!=null){
                        callBack.accept(result);
                    }
                });
        if (timeout == null) {
            future.join();
        } else {
            future.get(timeout, timeUnit);
        }
    }


    public static  <T> T getObject(List<Object> result,int index,Class<T> clz){
        if (CollectionUtils.isEmpty(result)){
            return null;
        }
        if (index+1 > result.size()){
            return null;
        }
        return (T) result.get(index);
    }

    public static  <T> List<T> getObjectList(List<Object> result,int index,Class<T> clz){
        if (CollectionUtils.isEmpty(result)){
            return null;
        }
        if (index+1 > result.size()){
            return null;
        }
        return (List<T>) result.get(index);
    }
 }

使用

  CompletableTasks completableTasks = new CompletableTasks();
        completableTasks.addTask(()->{
            return "success";
        }).execute(5L,TimeUnit.SECONDS, list ->{
            //回调
            String result = getObject(list, 0, String.class);
            System.out.println(result);
        });

结果:

success
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值