add scheduled async example

This commit is contained in:
DOHA
2019-08-03 15:24:39 +03:00
parent b96425265b
commit e6a38aada1
3 changed files with 47 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
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);
}
}