如何创建org.springframework.util.concurrent.ListenableFuture的完整实例

时间:2019-02-08 10:45:14

标签: java spring

如何创建org.springframework.util.concurrent.ListenableFuture的虚拟实例?

它应该表示具有给定结果的已完成任务。

1 个答案:

答案 0 :(得分:0)

假设String result,您可以使用以下内容:

    String result = "result";
    ListenableFuture<String> future = new AsyncResult<>(result);
    String dummy = future.get();

但是,如果需要,可以将任何object包裹在AsyncResult中。