我最近一直在研究 高舞动作,觉得在 Java 中使用类似的代码会很不错。就我所知,并行化方法调用的常用方法是这样做的:
final String x = "somethingelse";
new Thread(new Runnable() {
public void run() {
x.matches("something");
}
}).start();
这可不怎么优雅。我在一个项目中需要这样的解决方案,所以我决定围绕一个异步方法调用实现我自己的包装类。
我在 走吧中发布了我的包装类。但我不知道这是不是个好办法。用法很简单:
SampleClass obj = ...
FutureResult<Integer> res = ...
Go go = new Go(obj);
go.callLater(res, "intReturningMethod", 10); //10 is a Integer method parameter
//... Do something else
//...
System.out.println("Result: "+res.get()); //Blocks until intReturningMethod returns
或者不那么冗长:
Go.with(obj).callLater("myRandomMethod");
//... Go away
if (Go.lastResult().isReady()) //Blocks until myRandomMethod has ended
System.out.println("Method is finished!");
在内部,我使用一个实现 Runnable 的类,并执行一些反射工作来获得正确的方法对象并调用它。
我想了解一些关于我的小型库以及在 Java 中进行这样的异步方法调用的主题的意见。安全吗?已经有更简单的方法了吗?