Spring Boot - Async Processing
Given the code below, what will be the output behavior?
@Scheduled(fixedDelay = 2000)
public void task() {
System.out.println("Running task");
try { Thread.sleep(3000); } catch (InterruptedException e) {}
}