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

com.github.zhangxd1989.basetool.cron.task.RunnableTask Maven / Gradle / Ivy

package com.github.zhangxd1989.basetool.cron.task;

/**
 * {@link Runnable} 的 {@link Task}包装
 *
 * @author sheldon
 */
public class RunnableTask implements Task {
    private Runnable runnable;

    public RunnableTask(Runnable runnable) {
        this.runnable = runnable;
    }

    @Override
    public void execute() {
        runnable.run();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy