Essentials/Essentials/src/main/java/com/earth2me/essentials/api/IReload.java

16 lines
376 B
Java
Raw Normal View History

2011-12-06 16:32:06 +01:00
package com.earth2me.essentials.api;
2020-10-04 18:03:52 +02:00
/**
* Represents a storage object that is reloadable.
*
* @deprecated This is a remnant of the abandoned 3.x storage system. Neither future 2.x code nor external plugins
* should use this interface.
*/
@Deprecated
2015-04-15 06:06:16 +02:00
public interface IReload {
2020-10-04 18:03:52 +02:00
/**
* Reloads the given storage object.
*/
2015-04-15 06:06:16 +02:00
void onReload();
2011-12-06 16:32:06 +01:00
}