All Downloads are FREE. Search and download functionalities are using the official Maven repository.

quarkus.springboot.tests.data.springboot-scheduled.ScheduledAnnotationExample Maven / Gradle / Ivy

The newest version!
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;

@Component("scheduledAnnotationExample")
public class ScheduledAnnotationExample {


    @Scheduled(fixedRate = 1000)
    public void scheduleFixedRateTask() {
        System.out.println("Fixed rate task - " + System.currentTimeMillis() / 1000);
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy