Schnittstelle ICoreTask


public interface ICoreTask
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    org.bukkit.scheduler.BukkitTask
    async(Runnable runnable)
    Run the task async.
    org.bukkit.scheduler.BukkitTask
    later(Runnable runnable, long delay)
    Run the task after x ticks.
    org.bukkit.scheduler.BukkitTask
    laterAsync(Runnable runnable, long delay)
    Run the task after x ticks.
    org.bukkit.scheduler.BukkitTask
    nextTick(Runnable runnable)
    Run a task on the next server tick.
    org.bukkit.scheduler.BukkitTask
    repeat(Runnable runnable, long delay, long period)
    Repeat the task every x ticks.
    org.bukkit.scheduler.BukkitTask
    repeatAsync(Runnable runnable, long delay, long period)
    Repeat the task every x ticks.
  • Methodendetails

    • repeat

      org.bukkit.scheduler.BukkitTask repeat(Runnable runnable, long delay, long period)
      Repeat the task every x ticks.
      Parameter:
      runnable - the runnable
      delay - the start delay
      period - the repeat period
      Gibt zurück:
      the BukkitTask
    • repeatAsync

      org.bukkit.scheduler.BukkitTask repeatAsync(Runnable runnable, long delay, long period)
      Repeat the task every x ticks.
      Parameter:
      runnable - the runnable
      delay - the start delay
      period - the repeat period
      Gibt zurück:
      the BukkitTask
    • later

      org.bukkit.scheduler.BukkitTask later(Runnable runnable, long delay)
      Run the task after x ticks.
      Parameter:
      runnable - the runnable
      delay - the delay
      Gibt zurück:
      the BukkitTask
    • laterAsync

      org.bukkit.scheduler.BukkitTask laterAsync(Runnable runnable, long delay)
      Run the task after x ticks.
      Parameter:
      runnable - the runnable
      delay - the delay
      Gibt zurück:
      the BukkitTask
    • async

      org.bukkit.scheduler.BukkitTask async(Runnable runnable)
      Run the task async.
      Parameter:
      runnable - the runnable
      Gibt zurück:
      the BukkitTask
    • nextTick

      org.bukkit.scheduler.BukkitTask nextTick(Runnable runnable)
      Run a task on the next server tick.
      Parameter:
      runnable - the runnable
      Gibt zurück:
      the BukkitTask