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

io.github.sinri.keel.servant.sundial.KeelSundialPlan Maven / Gradle / Ivy

Go to download

A website framework with VERT.X for ex-PHP-ers, exactly Ark Framework Users.

There is a newer version: 3.2.18
Show 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