* @brief Tell all plugins instantiated by this factory that the configuration * they are using is no longer the active one. * * This method would be useful only in case configs are reloaded independently from * factory/plugins instantiation and initialization. */
| 322 | * factory/plugins instantiation and initialization. |
| 323 | */ |
| 324 | void |
| 325 | PluginFactory::deactivate() |
| 326 | { |
| 327 | PluginDbg(_dbg_ctl(), "deactivate configuration used by factory '%s'", getUuid()); |
| 328 | |
| 329 | _instList.apply([](RemapPluginInst &pluginInst) -> void { pluginInst.done(); }); |
| 330 | } |
| 331 | |
| 332 | /** |
| 333 | * @brief Tell all plugins (that so wish) that remap.config is going to be reloaded |
no test coverage detected