Class SaveAccountDataTask

java.lang.Object
org.bukkit.scheduler.BukkitRunnable
dev.satyrn.xpeconomy.tasks.SaveAccountDataTask
All Implemented Interfaces:
Runnable

public final class SaveAccountDataTask extends org.bukkit.scheduler.BukkitRunnable
  • Constructor Summary

    Constructors
    Constructor
    Description
    SaveAccountDataTask(org.bukkit.plugin.Plugin plugin, AccountManager accountManager)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    run()
    When an object implementing interface Runnable is used to create a thread, starting the thread causes the object's run method to be called in that separately executing thread.

    Methods inherited from class org.bukkit.scheduler.BukkitRunnable

    cancel, getTaskId, isCancelled, runTask, runTaskAsynchronously, runTaskLater, runTaskLaterAsynchronously, runTaskTimer, runTaskTimerAsynchronously

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • SaveAccountDataTask

      public SaveAccountDataTask(org.bukkit.plugin.Plugin plugin, AccountManager accountManager)
  • Method Details

    • run

      public void run()
      When an object implementing interface Runnable is used to create a thread, starting the thread causes the object's run method to be called in that separately executing thread.

      The general contract of the method run is that it may take any action whatsoever.

      See Also: