Add method to remove cached plugin after removing plugin
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / quelaton / RemovePluginCommand.java
index c221592..031e903 100644 (file)
@@ -7,6 +7,8 @@ package net.pterodactylus.fcp.quelaton;
  */
 public interface RemovePluginCommand {
 
+       RemovePluginCommand waitFor(int milliseconds);
+       RemovePluginCommand purge();
        Executable<Boolean> plugin(String pluginClass);
 
 }