public interface HotSwapClassesRedefinitionsListener
| Modifier and Type | Method and Description |
|---|---|
void |
classRedefined(Class<?> redefinedClass)
Called when a watched class is redefined.
|
Set<Class<?>> |
getClassesToWatch()
The class(es) to watch.
|
boolean |
isEnabled()
Should this listener be enabled?
|
boolean isEnabled()
In most cases, you only want to be able to auto reload classes during development.
When this method return false, the
listener is not registered, at all.
A common pattern for this method is to use:
return getSpincastConfig().isDevelopmentMode();
void classRedefined(Class<?> redefinedClass)
Receives the class that was modified.
The method is called in a new Thread.
Copyright © 2018. All rights reserved.