当前位置:   article > 正文

CompletableFuture详解~thenAcceptAsync

thenacceptasync

异步地消费迁移阶段的结果

同样,可以使用thenAcceptAsync方法, 串联的CompletableFuture可以异步地执行。

  1. static void thenAcceptAsyncExample() {
  2. StringBuilder result = new StringBuilder();
  3. CompletableFuture cf = CompletableFuture.completedFuture("thenAcceptAsync message")
  4. .thenAcceptAsync(s -> result.append(s));
  5. cf.join();
  6. assertTrue("Result was empty", result.length() > 0);
  7. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/926202
推荐阅读
相关标签
  

闽ICP备14008679号