MySQL 9.0.0
Source Code Documentation
get_synode_app_data.h
Go to the documentation of this file.
1/* Copyright (c) 2018, 2024, 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 designed to work 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 either included with
13 the program or referenced in the documentation.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License, version 2.0, for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
23
24#ifndef GET_SYNODE_APP_DATA_H
25#define GET_SYNODE_APP_DATA_H
26
27#include "xdr_gen/xcom_vp.h"
28
29/*
30 Error code for the xcom_get_synode_app_data command.
31 */
32typedef enum {
39
40/**
41 Retrieves the application payloads decided on the given synodes.
42
43 @param[in] synodes The desired synodes
44 @param[out] reply The application payloads of the requested synodes
45 @retval XCOM_GET_SYNODE_APP_DATA_OK If successful, and @c reply was written to
46 @retval XCOM_GET_SYNODE_APP_DATA_NOT_CACHED If we do not have some requested
47 synode's application payload
48 @retval XCOM_GET_SYNODE_APP_DATA_NOT_DECIDED If we haven't yet reached
49 consensus on some requested synode
50 @retval XCOM_GET_SYNODE_APP_DATA_NO_MEMORY If there was an error allocating
51 memory
52 @retval XCOM_GET_SYNODE_APP_DATA_ERROR If there was some unspecified error
53 */
55 synode_no_array const *const synodes, synode_app_data_array *const reply);
56
57#endif /* GET_SYNODE_APP_DATA_H */
xcom_get_synode_app_data_result xcom_get_synode_app_data(synode_no_array const *const synodes, synode_app_data_array *const reply)
Retrieves the application payloads decided on the given synodes.
Definition: get_synode_app_data.cc:48
xcom_get_synode_app_data_result
Definition: get_synode_app_data.h:32
@ XCOM_GET_SYNODE_APP_DATA_OK
Definition: get_synode_app_data.h:33
@ XCOM_GET_SYNODE_APP_DATA_NOT_DECIDED
Definition: get_synode_app_data.h:35
@ XCOM_GET_SYNODE_APP_DATA_ERROR
Definition: get_synode_app_data.h:37
@ XCOM_GET_SYNODE_APP_DATA_NOT_CACHED
Definition: get_synode_app_data.h:34
@ XCOM_GET_SYNODE_APP_DATA_NO_MEMORY
Definition: get_synode_app_data.h:36