Multi database async lookup to return a future of a map instead of a map with future values
Closed this issue · 0 comments
gedl commented
Currently the async multi db look ups return Map<DatabaseProvider, CompletionStage<Optional<IpInformation>>>
.
This puts a burden on the caller to deal with multiple futures.
Alternatively, a `CompletionStage<Map<DatabaseProvider,Optional>>' (or a dice-where representation of that structure), should be returned.