Cancel outstanding tasks and shut down the executor.

This commit is contained in:
akwizgran
2011-12-09 21:13:53 +00:00
parent cd068e89c0
commit 8af7e72943
6 changed files with 29 additions and 15 deletions

View File

@@ -6,10 +6,10 @@ public interface PluginManager {
* Starts the plugins and returns the number of plugins successfully
* started.
*/
int startPlugins();
int start();
/**
* Stops the plugins and returns the number of plugins successfully stopped.
*/
int stopPlugins();
int stop();
}