Package co.paralleluniverse.actors
Interface ActorLoaderMXBean
-
- All Known Implementing Classes:
ActorLoader
public interface ActorLoaderMXBean
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<java.lang.String>
getLoadedModules()
All currently loaded modulesvoid
reloadModule(java.lang.String jarURL)
Loads or reloads the module at the given URLvoid
unloadModule(java.lang.String jarURL)
Unloads the module at the given URL
-
-
-
Method Detail
-
getLoadedModules
java.util.List<java.lang.String> getLoadedModules()
All currently loaded modules
-
reloadModule
void reloadModule(java.lang.String jarURL)
Loads or reloads the module at the given URL- Parameters:
jarURL
- the URL of the JAR file containing the module
-
unloadModule
void unloadModule(java.lang.String jarURL)
Unloads the module at the given URL- Parameters:
jarURL
- the URL of the JAR file containing the module
-
-