所以這裏的問題:Java8 CompletionStage內容
如何真正得到這樣的內容:
RxClient<RxCompletionStageInvoker> newRxClient = RxCompletionStage.newClient();
CompletionStage<Response> stage = newRxClient
.target("somelink")
.request()
.rx()
.get()
.toCompletableFuture();
相反的:
[email protected][Completed normally]
編輯:發現的情況下,任何人的解決方案否則在這個問題上絆倒:
stage.toCompletableFuture().get()
你想作爲一個輸出什麼?你能舉個例子嗎? – n247s
該鏈接給出返回JSON,我想要得到該JSON作爲輸出。 – Rauno