Main クラスでは、CompletableFuture を使用して非同期にタスクを実行しようとしています。FMSMsgHandlerSupplier クラスのコードに示すように、Double[] 型のデータを返します。
問題は、Main クラスの for ループで FMSMsgHandlerSupplier が 5 回呼び出され、反復ごとにデータ型 Double[] の新しい値を受け取っていると仮定して、FMSMsgHandlerSupplier への各呼び出し後に計算された結果を取得するにはどうすればよいかということです。クラス?
メイン:
public class Main {
private final static String TAG = Main.class.getSimpleName();
public static void main(String[] args) throws InterruptedException, ExecutionException {
CompletableFuture<Double[]> compFuture = null;
for (int i = 0; i < 5; i++) {
compFuture = CompletableFuture.supplyAsync(new FMSMsgHandlerSupplier(1000 + (i*1000), "1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12"));
}
}
}
FMSMsgHandlerSupplier :
public class FMSMsgHandlerSupplier implements Supplier<Double[]>{
private final static String TAG = FMSMsgHandlerSupplier.class.getSimpleName();
private String mFMSMsg = "";
private static long sStartTime = TimeUtils.getTSMilli();
private int mSleepTime;
public FMSMsgHandlerSupplier(int sleepTime, String fmsMsg) {
// TODO Auto-generated constructor stub
this.mFMSMsg = fmsMsg;
this.mSleepTime = sleepTime;
}
public Double[] get() {
// TODO Auto-generated method stub
if (this.mFMSMsg != null && !this.mFMSMsg.isEmpty()) {
Double[] inputMeasurements = new Double[9];
String[] fmsAsArray = this.toArray(this.mFMSMsg);
inputMeasurements = this.getInputMeasurements(fmsAsArray);
return inputMeasurements;
} else {
Log.e(TAG, "FMSMsgHandler", "fmsMsg is null or empty");
return null;
}
}