Home » Tip Bank » Java |
|
Language: Java
Expertise: Intermediate
Expertise: Intermediate
Jul 30, 2019
- in
WEBINAR:
On-Demand
Building the Right Environment to Support AI, Machine Learning and Deep Learning
Watch
→
Async Query Results
Repository queries can be executed asynchronously using @Async annotation.
The result can be a Future, CompletableFuture and ListenableFuture. The method will return immediately upon invocation:
@async Future findByName(String name); @async CompletableFuture findByName(String name); @async ListenableFuture findByName(String name);
Octavia Anghel
![]() |
Submit a Tip | ![]() |
Browse "Java" Tips | ![]() |
Browse All Tips |
codecademy.com