Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在进行每秒 10 个请求速率限制的第三方 GET API 调用。如何成功控制 http GET 请求以避免达到第三方的速率限制。我正在使用 Vertx Webclient 发出 GET 请求。
使用 CompletableFutures 的两种方法:
CompletableFuture
runAsync()
supplyAsync()
如果您将 CompletableFutures 存储在列表/地图中(无论哪种方式最适合您的情况),您可以.get()稍后在需要访问结果时获得答案。
.get()