Class Cache<T>
java.lang.Object
org.strassburger.lifestealz.util.caches.Cache<T>
- Direct Known Subclasses:
EliminatedPlayersCache
,OfflinePlayerCache
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
addAllItems
(Set<T> items) Add all items to the cachevoid
Add an item to the cachevoid
Clear the cacheGet a set of all cached dataprotected LifeStealZ
abstract void
Reload the cache from the databasevoid
removeItem
(T item) Remove an item from the cache
-
Constructor Details
-
Cache
-
-
Method Details
-
reloadCache
public abstract void reloadCache()Reload the cache from the database -
getCachedData
Get a set of all cached data -
addItem
Add an item to the cache- Parameters:
item
- The item to add
-
removeItem
Remove an item from the cache- Parameters:
item
- The item to remove
-
addAllItems
Add all items to the cache- Parameters:
items
- The items to add
-
clearCache
public void clearCache()Clear the cache -
getPlugin
-