MySQL 8.3.0
Source Code Documentation
service_pfs_notification.h
Go to the documentation of this file.
1/* Copyright (c) 2017, 2023, Oracle and/or its affiliates.
2
3This program is free software; you can redistribute it and/or modify
4it under the terms of the GNU General Public License, version 2.0,
5as published by the Free Software Foundation.
6
7This program is also distributed with certain software (including
8but not limited to OpenSSL) that is licensed under separate terms,
9as designated in a particular file or component or in included license
10documentation. The authors of MySQL hereby grant you an additional
11permission to link the program and your derivative works with the
12separately licensed software that they have included with MySQL.
13
14This program is distributed in the hope that it will be useful,
15but WITHOUT ANY WARRANTY; without even the implied warranty of
16MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17GNU General Public License, version 2.0, for more details.
18
19You should have received a copy of the GNU General Public License
20along with this program; if not, write to the Free Software
21Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
22
23#ifndef SERVICE_PFS_NOTIFICATION_H
24#define SERVICE_PFS_NOTIFICATION_H
25
27
29 bool with_ref_count);
36
37#endif
struct PSI_thread PSI_thread
Definition: psi_thread_bits.h:81
static int handle(int sql_errno, const char *sqlstate, const char *message, void *state)
Bridge function between the C++ API offered by this module and the C API of the parser service.
Definition: services.cc:63
void pfs_notify_thread_create(PSI_thread *thread)
Invoke callbacks registered for create thread events.
Definition: service_pfs_notification.cc:339
void pfs_notify_thread_destroy(PSI_thread *thread)
Invoke callbacks registered for destroy thread events.
Definition: service_pfs_notification.cc:366
void pfs_notify_session_disconnect(PSI_thread *thread)
Invoke callbacks registered for session disconnect events.
Definition: service_pfs_notification.cc:429
int pfs_register_notification(const struct PSI_notification_v3 *callbacks, bool with_ref_count)
int pfs_unregister_notification(int handle)
Unregister callbacks for the Notification service.
Definition: service_pfs_notification.cc:329
void pfs_notify_session_change_user(PSI_thread *thread)
Invoke callbacks registered for session change user events.
Definition: service_pfs_notification.cc:467
void pfs_notify_session_connect(PSI_thread *thread)
Invoke callbacks registered for session connect events.
Definition: service_pfs_notification.cc:392
Registration structure for the pfs_notification service.
Definition: psi_thread_bits.h:522