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

dev.alangomes.springspigot.util.scheduler.Scheduler Maven / Gradle / Ivy

There is a newer version: 0.20.7
Show newest version
package dev.alangomes.springspigot.util.scheduler;

/**
 * Wrapper around {@link org.bukkit.scheduler.BukkitScheduler BukkitScheduler} to remove the need of the plugin reference
 * as well as keep the context during the tasks.
 *
 * @deprecated You should use {@link dev.alangomes.springspigot.util.scheduler.SchedulerService SchedulerService}
 */
@Deprecated
public interface Scheduler {
    /**
     * Schedules a once off task to occur after a delay.
     * 

* This task will be executed by the main server thread. * * @param task Task to be executed * @param delay Delay in server ticks before executing task * @return Task id number (-1 if scheduling failed) * @deprecated You should use {@link dev.alangomes.springspigot.util.scheduler.SchedulerService#scheduleSyncDelayedTask(Runnable task, long delay)} */ @Deprecated int scheduleSyncDelayedTask(Runnable task, long delay); /** * Schedules a once off task to occur as soon as possible. *

* This task will be executed by the main server thread. * * @param task Task to be executed * @return Task id number (-1 if scheduling failed) * @deprecated You should use {@link dev.alangomes.springspigot.util.scheduler.SchedulerService#scheduleSyncDelayedTask(Runnable task)} */ @Deprecated int scheduleSyncDelayedTask(Runnable task); /** * Schedules a repeating task. *

* This task will be executed by the main server thread. * * @param task Task to be executed * @param delay Delay in server ticks before executing first repeat * @param period Period in server ticks of the task * @return Task id number (-1 if scheduling failed) * @deprecated You should use {@link dev.alangomes.springspigot.util.scheduler.SchedulerService#scheduleSyncRepeatingTask(Runnable task, long delay, long period)} */ @Deprecated int scheduleSyncRepeatingTask(Runnable task, long delay, long period); /** * Removes task from scheduler. * * @param taskId Id number of task to be removed * @deprecated You should use {@link dev.alangomes.springspigot.util.scheduler.SchedulerService#cancelTask(int taskId)} */ @Deprecated void cancelTask(int taskId); /** * Check if the task currently running. *

* A repeating task might not be running currently, but will be running in * the future. A task that has finished, and does not repeat, will not be * running ever again. *

* Explicitly, a task is running if there exists a thread for it, and that * thread is alive. * * @param taskId The task to check. * @return If the task is currently running. * @deprecated You should use {@link dev.alangomes.springspigot.util.scheduler.SchedulerService#isCurrentlyRunning(int taskId)} */ @Deprecated boolean isCurrentlyRunning(int taskId); /** * Check if the task queued to be run later. *

* If a repeating task is currently running, it might not be queued now * but could be in the future. A task that is not queued, and not running, * will not be queued again. * * @param taskId The task to check. * @return If the task is queued to be run. * @deprecated You should use {@link dev.alangomes.springspigot.util.scheduler.SchedulerService#isQueued(int taskId)} */ @Deprecated boolean isQueued(int taskId); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy