MySQL 9.1.0
Source Code Documentation
|
Base class to find specific thd from the thd list. More...
#include <mysqld_thd_manager.h>
Public Member Functions | |
virtual | ~Find_THD_Impl ()=default |
virtual bool | operator() (THD *thd)=0 |
Override this operator to provide implementation to find specific thd. More... | |
Base class to find specific thd from the thd list.
Users of find_thd() need to subclass this and override operator() to provide implementation to find thd from thd list.
|
virtualdefault |
|
pure virtual |
Override this operator to provide implementation to find specific thd.
thd | THD of one element in global thread list |
true | for matching thd false otherwise |
Implemented in Find_thd_with_id, Find_thd_query_lock, Find_zombie_dump_thread, Find_THD_variable, and Find_thd_user_var.