3
與C#中Java的Future<T>
最接近的是什麼?c#相當於java.util.concurrent.Future <T>
例如,你會在下面的最接近的重建在C#:
public class FutureMethodCall implements Future {
private Future<APIResponse> methodCall;
public boolean cancel(boolean mayInterruptIfRunning) {
return this.methodCall.cancel(mayInterruptIfRunning);
}
public APIResponse get() throws ExecutionException, InterruptedException {
return this.methodCall.get();
}
...
}
提前感謝!
你可以谷歌任務 –
如果你不能使用任務(因爲你被困在一箇舊版本的C#)嘗試我的承諾實施:https://github.com/Real-Serious-Games/C-夏普承諾。也可在nuget上找到:https://www.nuget.org/packages/RSG.Promise/ –