我的ItemDetails和ItemPriceDetails定义如下-
class ItemDetails {
private int itemId;
private int uom;
private int zipcode;
private String promoCode;
}
class ItemPriceDetails {
private int itemId;
private int uom;
private int zipcode;
private float totalCost;
private float totalTax;
private TaxDetails taxDetails;
private DiscountDetails discountDetails;
}
InventoryTargetExecutors
是第三方jar,提供了fetchPrice
函数,这些函数将ItemDetails
作为输入并返回CompletableFuture<ItemPriceDetails>
作为输出。
我想使用CompletableFuture.allof
函数以指定的超时并行调用多个InventoryTargetExecutor,并打印调用期间超时的InventoryTargetExecutors
。
ItemDetails ids = ...;
List<InventoryConfigExecutors> inventoryConfigExecutors = applicationContext.get("InventoryConfigExecutors");
List<CompletableFuture<Pair<ItemPriceDetails, InventoryConfigExecutors>>> priceFutures = inventoryConfigExecutors.stream().map(ice -> Pair.of(ice.fetchPrice(ids), ice)).collect(Collectors.toList());
CompletableFuture<Void> futuresExecuted = CompletableFuture.allOf(priceFutures.toArray(new CompletableFuture[priceFutures.size()]));
我不知道如何使用CompletableFuture.allof使priceFutures超时,并同时记录超时的InventoryConfigExecutor。
答案 0 :(得分:0)
如果使用JDK 9或更高版本,CompletableFuture.orTimeout
将允许您设置超时。
对于早期版本,您需要自己实现,可能需要安排一个调用completeExceptionally
的任务。
对于日志记录,您可以使用whenComplete
并检查throwable参数,并记录是否存在。
注意:这不能区分超时还是其他故障。