INNER CODE UNIT · Java
aroundAsync
zalando/riptide · riptide-core/src/main/java/org/zalando/riptide/AsyncPlugin.java:17
public RequestExecution aroundAsync(final RequestExecution execution) {
return arguments ->
supplyAsync(throwingSupplier(() -> execution.execute(arguments)), executor)
.thenCompose(identity());
}
}