SNode.C
Loading...
Searching...
No Matches
MariaDBCommandSequence.cpp
Go to the documentation of this file.
1
/*
2
* SNode.C - a slim toolkit for network communication
3
* Copyright (C) Volker Christian <me@vchrist.at>
4
* 2020, 2021, 2022, 2023, 2024, 2025
5
* 2021, 2022 Daniel Flockert
6
*
7
* This program is free software: you can redistribute it and/or modify
8
* it under the terms of the GNU Lesser General Public License as published
9
* by the Free Software Foundation, either version 3 of the License, or
10
* (at your option) any later version.
11
*
12
* This program is distributed in the hope that it will be useful,
13
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
* GNU Lesser General Public License for more details.
16
*
17
* You should have received a copy of the GNU Lesser General Public License
18
* along with this program. If not, see <http://www.gnu.org/licenses/>.
19
*/
20
21
#
include
"database/mariadb/MariaDBCommandSequence.h"
22
23
#
include
"database/mariadb/MariaDBCommandSync.h"
24
25
#
ifndef
DOXYGEN_SHOULD_SKIP_THIS
26
27
#
endif
/* DOXYGEN_SHOULD_SKIP_THIS */
28
29
namespace
database::
mariadb
{
30
31
std
::
deque
<
MariaDBCommand
*>& database::
mariadb
::
MariaDBCommandSequence
::
sequence
() {
32
return
commandSequence;
33
}
34
35
MariaDBCommand
*
MariaDBCommandSequence
::
nextCommand
() {
36
return
commandSequence.front();
37
}
38
39
void
MariaDBCommandSequence
::
commandCompleted
() {
40
commandSequence.pop_front();
41
}
42
43
bool
MariaDBCommandSequence
::
empty
() {
44
return
commandSequence.empty();
45
}
46
47
MariaDBCommandSequence
&
MariaDBCommandSequence
::
execute_async
(
MariaDBCommand
* mariaDBCommand) {
48
commandSequence.push_back(mariaDBCommand);
49
50
return
*
this
;
51
}
52
53
void
MariaDBCommandSequence
::
execute_sync
(
MariaDBCommandSync
* mariaDBCommand) {
54
commandSequence.push_back(mariaDBCommand);
55
}
56
57
}
// namespace database::mariadb
database::mariadb::MariaDBCommandSequence
Definition
MariaDBCommandSequence.h:41
database::mariadb::MariaDBCommandSequence::execute_sync
void execute_sync(MariaDBCommandSync *mariaDBCommand) final
Definition
MariaDBCommandSequence.cpp:53
database::mariadb::MariaDBCommandSequence::commandCompleted
void commandCompleted()
Definition
MariaDBCommandSequence.cpp:39
database::mariadb::MariaDBCommandSequence::sequence
std::deque< MariaDBCommand * > & sequence()
Definition
MariaDBCommandSequence.cpp:31
database::mariadb::MariaDBCommandSequence::execute_async
MariaDBCommandSequence & execute_async(MariaDBCommand *mariaDBCommand) final
Definition
MariaDBCommandSequence.cpp:47
database::mariadb::MariaDBCommandSequence::empty
bool empty()
Definition
MariaDBCommandSequence.cpp:43
database::mariadb::MariaDBCommandSequence::nextCommand
MariaDBCommand * nextCommand()
Definition
MariaDBCommandSequence.cpp:35
database::mariadb::MariaDBCommandSync
Definition
MariaDBCommandSync.h:32
database::mariadb::MariaDBCommand
Definition
MariaDBCommand.h:44
database
Definition
MariaDBClient.h:39
database
mariadb
MariaDBCommandSequence.cpp
Generated on Mon Feb 10 2025 20:20:58 for SNode.C by
1.11.0