We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae4c896 commit dacb8a0Copy full SHA for dacb8a0
src/main/java/org/hydev/mcpm/client/injector/UnloadBoundary.java
@@ -0,0 +1,17 @@
1
+package org.hydev.mcpm.client.injector;
2
+
3
+/**
4
+ * Interface for unloading a locally installed plugin.
5
+ *
6
+ * @author Azalea (https://github.com/hykilpikonna)
7
+ * @since 2022-10-29
8
+ */
9
+public interface UnloadBoundary
10
+{
11
+ /**
12
+ * Dynamically unload a local plugin through JVM reflections and classloader hacks
13
14
+ * @param name Loaded plugin name
15
16
+ public void unloadPlugin(String name) throws PluginNotFoundException;
17
+}
0 commit comments