CompletableFuture高级用列

发布时间:2024年01月12日

链式

 public static void main(String[] args) throws Exception {
   
    	 CompletableFuture<Integer> thenCompose = T1()
        .thenCompose(Compress::T2)
        .thenCompose(Compress::T3);
	    Integer result = thenCompose.get();
	    System.out.println(result);
    	 
    }
    // 假设这些是异步操作,并返回CompletableFuture<Integer>
    public static CompletableFuture<Integer> T1() {
   
        return CompletableFuture.supplyAsync
文章来源:https://blog.csdn.net/qq_37792401/article/details/135547689
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。