Class PlayerBalanceSynchronizationTask

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

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

    Constructors
    Constructor
    Description
    PlayerBalanceSynchronizationTask(org.bukkit.plugin.Plugin plugin, org.bukkit.entity.Player player, Account account)
     
  • 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

    • PlayerBalanceSynchronizationTask

      public PlayerBalanceSynchronizationTask(org.bukkit.plugin.Plugin plugin, org.bukkit.entity.Player player, Account account)
  • 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: