Class Cache<T>

java.lang.Object
org.strassburger.lifestealz.util.caches.Cache<T>
Direct Known Subclasses:
EliminatedPlayersCache, OfflinePlayerCache

public abstract class Cache<T> extends Object
  • Constructor Details

  • Method Details

    • reloadCache

      public abstract void reloadCache()
      Reload the cache from the database
    • getCachedData

      public Set<T> getCachedData()
      Get a set of all cached data
    • addItem

      public void addItem(T item)
      Add an item to the cache
      Parameters:
      item - The item to add
    • removeItem

      public void removeItem(T item)
      Remove an item from the cache
      Parameters:
      item - The item to remove
    • addAllItems

      public void addAllItems(Set<T> items)
      Add all items to the cache
      Parameters:
      items - The items to add
    • clearCache

      public void clearCache()
      Clear the cache
    • getPlugin

      protected LifeStealZ getPlugin()