Module org.elasticsearch.server
Interface ReloadAwarePlugin
public interface ReloadAwarePlugin
A plugin that may receive a
ReloadablePlugin in order to
call its ReloadablePlugin.reload(Settings) method.-
Method Summary
Modifier and TypeMethodDescriptionvoidsetReloadCallback(ReloadablePlugin reloadablePlugin) Provide a callback for reloading plugins
-
Method Details
-
setReloadCallback
Provide a callback for reloading pluginsThis callback is in the form of an implementation of
ReloadablePlugin, but the implementation does not need to be aPlugin, or be registered withPluginsService.- Parameters:
reloadablePlugin- A plugin that this plugin may be able to reload
-