MySQL 8.3.0
Source Code Documentation
applier_channel_state_observer.h
Go to the documentation of this file.
1/* Copyright (c) 2015, 2023, Oracle and/or its affiliates.
2
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License, version 2.0,
5 as published by the Free Software Foundation.
6
7 This program is also distributed with certain software (including
8 but not limited to OpenSSL) that is licensed under separate terms,
9 as designated in a particular file or component or in included license
10 documentation. The authors of MySQL hereby grant you an additional
11 permission to link the program and your derivative works with the
12 separately licensed software that they have included with MySQL.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License, version 2.0, for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
22
23#ifndef APPLIER_CHANNEL_STATE_OBSERVER_INCLUDE
24#define APPLIER_CHANNEL_STATE_OBSERVER_INCLUDE
25
26#include "my_inttypes.h"
28
30 public:
32
33 /** Observer for receiver thread starts */
34 int thread_start(Binlog_relay_IO_param *param) override;
35
36 /** Observer for receiver thread stops */
37 int thread_stop(Binlog_relay_IO_param *param) override;
38
39 /** Observer for applier thread starts */
40 int applier_start(Binlog_relay_IO_param *param) override;
41
42 /** Observer for applier thread stops */
43 int applier_stop(Binlog_relay_IO_param *param, bool aborted) override;
44
45 /** Observer for when a new transmission from a another server is requested*/
47 uint32 flags) override;
48
49 /** Observer for whenever a event is read by the receiver thread*/
50 int after_read_event(Binlog_relay_IO_param *param, const char *packet,
51 unsigned long len, const char **event_buf,
52 unsigned long *event_len) override;
53
54 /** Observer for whenever a event is queued by the receiver thread*/
55 int after_queue_event(Binlog_relay_IO_param *param, const char *event_buf,
56 unsigned long event_len, uint32 flags) override;
57
58 /** Observer for whenever a reset slave is executed */
59 int after_reset_slave(Binlog_relay_IO_param *param) override;
60
61 /** Observer for applier log event */
63 int &out) override;
64};
65
66#endif /* APPLIER_CHANNEL_STATE_OBSERVER_INCLUDE */
Definition: applier_channel_state_observer.h:29
int thread_start(Binlog_relay_IO_param *param) override
Observer for receiver thread starts.
Definition: applier_channel_state_observer.cc:29
int after_queue_event(Binlog_relay_IO_param *param, const char *event_buf, unsigned long event_len, uint32 flags) override
Observer for whenever a event is queued by the receiver thread.
Definition: applier_channel_state_observer.cc:60
int applier_stop(Binlog_relay_IO_param *param, bool aborted) override
Observer for applier thread stops.
Definition: applier_channel_state_observer.cc:41
int before_request_transmit(Binlog_relay_IO_param *param, uint32 flags) override
Observer for when a new transmission from a another server is requested.
Definition: applier_channel_state_observer.cc:47
int after_reset_slave(Binlog_relay_IO_param *param) override
Observer for whenever a reset slave is executed.
Definition: applier_channel_state_observer.cc:66
int thread_stop(Binlog_relay_IO_param *param) override
Observer for receiver thread stops.
Definition: applier_channel_state_observer.cc:33
int applier_log_event(Binlog_relay_IO_param *param, Trans_param *trans_param, int &out) override
Observer for applier log event.
Definition: applier_channel_state_observer.cc:70
int after_read_event(Binlog_relay_IO_param *param, const char *packet, unsigned long len, const char **event_buf, unsigned long *event_len) override
Observer for whenever a event is read by the receiver thread.
Definition: applier_channel_state_observer.cc:52
int applier_start(Binlog_relay_IO_param *param) override
Observer for applier thread starts.
Definition: applier_channel_state_observer.cc:37
A interface class to code channel state response methods.
Definition: channel_observation_manager.h:37
static int flags[50]
Definition: hp_test1.cc:39
Some integer typedefs for easier portability.
uint32_t uint32
Definition: my_inttypes.h:66
Replication binlog relay IO observer parameter.
Definition: replication.h:588
Transaction observer parameter.
Definition: replication.h:135