Package dev.shamoo.runtime.core
Interface PluginRuntime
- All Known Subinterfaces:
HotStatePluginRuntime
public interface PluginRuntime
Engine-neutral lifecycle hooks for one plugin runtime. No implementation types cross this boundary.
-
Method Details
-
load
CompletionStage<Void> load() -
enable
CompletionStage<Void> enable() -
ready
CompletionStage<Void> ready() -
drain
CompletionStage<Void> drain() -
disable
CompletionStage<Void> disable() -
unload
CompletionStage<Void> unload()
-