Interface LocalLoader
- All Known Subinterfaces:
IterableLocalLoader
- All Known Implementing Classes:
AbstractLocalLoader, ClassLoaderLocalLoader, FilteredIterableLocalLoader, FilteredLocalLoader
public interface LocalLoader
A loader which implements the local part of a module.
Thread safety warning! The loader must never call into a class loader (or any other object) which may take locks and subsequently delegate to a module class loader. This will cause deadlocks and other hard-to-debug concurrency problems.
-
Method Summary
Modifier and TypeMethodDescriptionClass<?> loadClassLocal(String name, boolean resolve) Load a class which is locally defined by this loader.loadPackageLocal(String name) Load a package which is locally defined by this loader.loadResourceLocal(String name) Load a resource which is locally defined by this loader.
-
Method Details
-
loadClassLocal
-
loadPackageLocal
-
loadResourceLocal
-