apollo.ConfigChangeListener Maven / Gradle / Ivy
The newest version!
package apollo;
import apollo.model.ConfigChangeEvent;
/**
* @author Jason Song([email protected])
*/
public interface ConfigChangeListener {
/**
* Invoked when there is any config change for the appNamespace.
* @param changeEvent the event for this change
*/
public void onChange(ConfigChangeEvent changeEvent);
}