“Operacje Java CompletableFuture Chain 2” Kod odpowiedzi

Operacje Java CompletableFuture Chain 2

CompletableFuture<User> getUsersDetail(String userId) {
	return CompletableFuture.supplyAsync(() -> {
		return UserService.getUserDetails(userId);
	});	
}

CompletableFuture<Double> getCreditRating(User user) {
	return CompletableFuture.supplyAsync(() -> {
		return CreditRatingService.getCreditRating(user);
	});
}
Distinct Dog

Operacje Java CompletableFuture Chain 2

CompletableFuture<CompletableFuture<Double>> result = getUserDetail(userId)
.thenApply(user -> getCreditRating(user));
Distinct Dog

Odpowiedzi podobne do “Operacje Java CompletableFuture Chain 2”

Pytania podobne do “Operacje Java CompletableFuture Chain 2”

Więcej pokrewnych odpowiedzi na “Operacje Java CompletableFuture Chain 2” w Java

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu