| Package | Description | 
|---|---|
| org.bukkit.scheduler | Classes dedicated to letting  pluginsrun
 code at specific time intervals, including thread safety. | 
| Modifier and Type | Method and Description | 
|---|---|
| BukkitTask | BukkitRunnable. runTask(Plugin plugin)Schedules this in the Bukkit scheduler to run on next tick. | 
| BukkitTask | BukkitScheduler. runTask(Plugin plugin,
       BukkitRunnable task)Deprecated. 
 | 
| BukkitTask | BukkitScheduler. runTask(Plugin plugin,
       Runnable task)Returns a task that will run on the next server tick. | 
| BukkitTask | BukkitRunnable. runTaskAsynchronously(Plugin plugin)Asynchronous tasks should never access any API in Bukkit. | 
| BukkitTask | BukkitScheduler. runTaskAsynchronously(Plugin plugin,
                     BukkitRunnable task)Deprecated. 
 | 
| BukkitTask | BukkitScheduler. runTaskAsynchronously(Plugin plugin,
                     Runnable task)Asynchronous tasks should never access any API in Bukkit. | 
| BukkitTask | BukkitScheduler. runTaskLater(Plugin plugin,
            BukkitRunnable task,
            long delay)Deprecated. 
 | 
| BukkitTask | BukkitRunnable. runTaskLater(Plugin plugin,
            long delay)Schedules this to run after the specified number of server ticks. | 
| BukkitTask | BukkitScheduler. runTaskLater(Plugin plugin,
            Runnable task,
            long delay)Returns a task that will run after the specified number of server
 ticks. | 
| BukkitTask | BukkitScheduler. runTaskLaterAsynchronously(Plugin plugin,
                          BukkitRunnable task,
                          long delay)Deprecated. 
 | 
| BukkitTask | BukkitRunnable. runTaskLaterAsynchronously(Plugin plugin,
                          long delay)Asynchronous tasks should never access any API in Bukkit. | 
| BukkitTask | BukkitScheduler. runTaskLaterAsynchronously(Plugin plugin,
                          Runnable task,
                          long delay)Asynchronous tasks should never access any API in Bukkit. | 
| BukkitTask | BukkitScheduler. runTaskTimer(Plugin plugin,
            BukkitRunnable task,
            long delay,
            long period)Deprecated. 
 | 
| BukkitTask | BukkitRunnable. runTaskTimer(Plugin plugin,
            long delay,
            long period)Schedules this to repeatedly run until cancelled, starting after the
 specified number of server ticks. | 
| BukkitTask | BukkitScheduler. runTaskTimer(Plugin plugin,
            Runnable task,
            long delay,
            long period)Returns a task that will repeatedly run until cancelled, starting after
 the specified number of server ticks. | 
| BukkitTask | BukkitScheduler. runTaskTimerAsynchronously(Plugin plugin,
                          BukkitRunnable task,
                          long delay,
                          long period)Deprecated. 
 | 
| BukkitTask | BukkitRunnable. runTaskTimerAsynchronously(Plugin plugin,
                          long delay,
                          long period)Asynchronous tasks should never access any API in Bukkit. | 
| BukkitTask | BukkitScheduler. runTaskTimerAsynchronously(Plugin plugin,
                          Runnable task,
                          long delay,
                          long period)Asynchronous tasks should never access any API in Bukkit. | 
| Modifier and Type | Method and Description | 
|---|---|
| List<BukkitTask> | BukkitScheduler. getPendingTasks()Returns a list of all pending tasks. | 
Copyright © 2015. All rights reserved.