19 lines
575 B
Java
19 lines
575 B
Java
package com.baeldung.scheduling;
|
|
|
|
import org.springframework.scheduling.annotation.Async;
|
|
import org.springframework.scheduling.annotation.EnableAsync;
|
|
import org.springframework.scheduling.annotation.Scheduled;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
@Component
|
|
@EnableAsync
|
|
public class ScheduledFixedRateExample {
|
|
@Async
|
|
@Scheduled(fixedRate = 1000)
|
|
public void scheduleFixedRateTaskAsync() throws InterruptedException {
|
|
System.out.println("Fixed rate task async - " + System.currentTimeMillis() / 1000);
|
|
Thread.sleep(2000);
|
|
}
|
|
|
|
}
|