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

org.seedstack.scheduler.ScheduledTasks Maven / Gradle / Ivy

/*
 * Copyright © 2013-2018, The SeedStack authors 
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */

package org.seedstack.scheduler;

/**
 * This factory create a {@link ScheduledTaskBuilder} with the given {@link Task}.
 * 
 *     {@literal @}Inject
 *     private ScheduledTasks scheduledTasks;
 *     ...
 *     scheduledTasks.scheduledTask(MyTask.class).cron("* * 0/1 * * ?").schedule();
 * 
*

* This class should be injected. * * @see ScheduledTaskBuilder */ public interface ScheduledTasks { /** * Create a ScheduledTaskBuilder. * * @param taskClass Task class to schedule * @return ScheduledTaskBuilder */ ScheduledTaskBuilder scheduledTask(Class taskClass); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy