Interface Storage
- All Known Subinterfaces:
FileStorage
- All Known Implementing Classes:
YamlStorage
public interface Storage
-
Method Details
-
getKey
-
load
boolean load()Loads data from a file or other location.- Returns:
- Whether the load was successful
-
save
void save()Saves the in-memory aspects of the storage to disk. -
saveAsync
void saveAsync()Saves the in-memory aspects of the storage to disk (async).
-