io.github.sinri.keel.servant.sundial.KeelSundialPlan Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Keel Show documentation
Show all versions of Keel Show documentation
A website framework with VERT.X for ex-PHP-ers, exactly Ark Framework Users.
The newest version!
package io.github.sinri.keel.servant.sundial;
import io.github.sinri.keel.core.KeelCronExpression;
import io.vertx.core.Future;
import java.util.Calendar;
/**
* @since 3.0.0
* @since 3.2.4 change sync method `execute` to be async.
*/
public interface KeelSundialPlan {
String key();
KeelCronExpression cronExpression();
Future execute(Calendar now);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy