mirror of
https://github.com/PlaceholderAPI/PlaceholderAPI
synced 2025-03-15 03:11:11 +01:00
18 lines
476 B
Java
18 lines
476 B
Java
|
package me.clip.placeholderapi.expansion;
|
||
|
|
||
|
|
||
|
public interface Taskable {
|
||
|
|
||
|
/**
|
||
|
* Called when the implementing class has successfully been registered to the placeholder map
|
||
|
* Tasks that need to be performed when this expansion is registered should go here
|
||
|
*/
|
||
|
void start();
|
||
|
|
||
|
/**
|
||
|
* Called when the implementing class has been unregistered from PlaceholderAPI
|
||
|
* Tasks that need to be performed when this expansion has unregistered should go here
|
||
|
*/
|
||
|
void stop();
|
||
|
}
|