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

tech.powerjob.server.solon.common.timewheel.Timer Maven / Gradle / Ivy

The newest version!
package tech.powerjob.server.solon.common.timewheel;

import java.util.Set;
import java.util.concurrent.TimeUnit;

/**
 * 定时器
 *
 * @author tjq
 * @since 2020/4/2
 */
public interface Timer {

    /**
     * 调度定时任务
     */
    TimerFuture schedule(TimerTask task, long delay, TimeUnit unit);

    /**
     * 停止所有调度任务
     */
    Set stop();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy