com.github.kagkarlsson.examples.CronMain Maven / Gradle / Ivy
Show all versions of features Show documentation
/*
* Copyright (C) Gustav Karlsson
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of the License at
*
*
http://www.apache.org/licenses/LICENSE-2.0
*
*
Unless required by applicable law or agreed to in writing, software distributed under the
* License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.kagkarlsson.examples;
import com.github.kagkarlsson.examples.helpers.Example;
import com.github.kagkarlsson.scheduler.Scheduler;
import com.github.kagkarlsson.scheduler.task.helper.RecurringTask;
import com.github.kagkarlsson.scheduler.task.helper.Tasks;
import com.github.kagkarlsson.scheduler.task.schedule.Schedule;
import com.github.kagkarlsson.scheduler.task.schedule.Schedules;
import java.time.Duration;
import java.time.Instant;
import javax.sql.DataSource;
public class CronMain extends Example {
public static void main(String[] args) {
new CronMain().runWithDatasource();
}
@Override
public void run(DataSource dataSource) {
Schedule cron = Schedules.cron("*/10 * * * * ?");
RecurringTask cronTask =
Tasks.recurring("cron-task", cron)
.execute(
(taskInstance, executionContext) -> {
System.out.println(Instant.now().getEpochSecond() + "s - Cron-schedule!");
});
final Scheduler scheduler =
Scheduler.create(dataSource)
.startTasks(cronTask)
.pollingInterval(Duration.ofSeconds(1))
.registerShutdownHook()
.build();
scheduler.start();
}
}