![]() |
MySQL 8.1.0
Source Code Documentation
|
Interface for listeners on some of option changes. More...
#include <i_option_changed_listener.h>
Public Member Functions | |
virtual | ~I_option_changed_listener ()=default |
virtual void | notify_option_name_changed (I_option *source, std::string old_name)=0 |
Called after specified option has name changed. More... | |
virtual void | notify_option_optid_changed (I_option *source, uint32 old_optid)=0 |
Called after specified option has option ID changed. More... | |
Interface for listeners on some of option changes.
|
virtualdefault |
|
pure virtual |
Called after specified option has name changed.
It is also called when new option is added, old_name is empty string in that case.
Implemented in Mysql::Tools::Base::Options::Abstract_options_provider.
|
pure virtual |
Called after specified option has option ID changed.
It is also called when new option is added, old_optid is 0 in that case.
Implemented in Mysql::Tools::Base::Options::Abstract_options_provider.