MySQL 9.0.0
Source Code Documentation
s_mysql_keyring_component_status Struct Reference

Keyring component status provides a way to check whether keyring is active or not. More...

#include <keyring_metadata_query.h>

Public Attributes

mysql_service_status_t(* is_initialized )()
 Returns status of the keyring component. More...
 

Detailed Description

Keyring component status provides a way to check whether keyring is active or not.

my_service<SERVICE_TYPE(keyring_component_status)> component_status(
"keyring_component_status", m_reg_srv);
if (!component_status.is_valid()) {
return false;
}
return component_status->keyring_initialized();
Wraps my_h_service struct conforming ABI into RAII C++ object with ability to cast to desired service...
Definition: my_service.h:35
#define SERVICE_TYPE(name)
Generates the standard Service type name.
Definition: service.h:76

Member Data Documentation

◆ is_initialized

mysql_service_status_t(* s_mysql_keyring_component_status::is_initialized) ()

Returns status of the keyring component.

returns true if keyring initialized, false otherwise.


The documentation for this struct was generated from the following file: