21 lines
476 B
Java
21 lines
476 B
Java
package com.baeldung.scheduled;
|
|
|
|
import org.springframework.scheduling.annotation.Scheduled;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
import java.util.concurrent.atomic.AtomicInteger;
|
|
|
|
@Component
|
|
public class Counter {
|
|
private final AtomicInteger count = new AtomicInteger(0);
|
|
|
|
@Scheduled(fixedDelay = 5)
|
|
public void scheduled() {
|
|
this.count.incrementAndGet();
|
|
}
|
|
|
|
public int getInvocationCount() {
|
|
return this.count.get();
|
|
}
|
|
}
|