SObjectizer-5 Extra
Loading...
Searching...
No Matches
error_ranges.hpp
Go to the documentation of this file.
1/*!
2 * \brief Ranges for error codes of each submodules.
3 *
4 * \since
5 * v.1.0.2
6 */
7#pragma once
8
9namespace so_5 {
10
11namespace extra {
12
13namespace errors {
14
15//! Starting point for errors of shutdowner submodule.
16const int shutdowner_errors = 20000;
17
18//! Starting point for errors of collecting_mbox submodule.
19const int collecting_mbox_errors = 20100;
20
21//! Starting point for errors of asio_thread_pool submodule.
22const int asio_thread_pool_errors = 20200;
23
24//! Starting point for errors of retained_msg_mbox submodule.
25/*!
26 * \since
27 * v.1.0.3
28 */
29const int retained_msg_mbox_errors = 20300;
30
31//! Starting point for errors of async_op submodule.
32/*!
33 * \since
34 * v.1.0.4
35 */
36const int async_op_errors = 20400;
37
38//! Starting point for errors of mboxes::proxy submodule.
39/*!
40 * \since
41 * v.1.2.0
42 */
43const int mboxes_proxy_errors = 20500;
44
45//! Starting point for errors of revocable_timer submodule.
46/*!
47 * \since
48 * v.1.2.0
49 */
50const int revocable_timer_errors = 20600;
51
52//! Starting point for errors of enveloped_msg submodule.
53/*!
54 * \since
55 * v.1.2.0
56 */
57const int enveloped_msg_errors = 20700;
58
59//! Starting point for errors of revocable_msg submodule.
60/*!
61 * \since
62 * v.1.2.0
63 */
64const int revocable_msg_errors = 20800;
65
66//! Starting point for errors of sync submodule.
67/*!
68 * \since
69 * v.1.3.0
70 */
71const int sync_errors = 20900;
72
73//! Starting point for errors of asio_one_thread submodule.
74/*!
75 * \since
76 * v.1.4.1
77 */
78const int asio_one_thread_errors = 21000;
79
80//! Starting point for errors of mboxes::unique_subscribers submodule.
81/*!
82 * \since
83 * v.1.4.1
84 */
86
87//! Starting point for errors of mboxes::round_robin submodule.
88/*!
89 * \since
90 * v.1.5.1.1
91 */
92const int mboxes_round_robin_errors = 21200;
93
94//! Starting point for errors of mboxes::first_last_subscriber_notification
95//! submodule.
96/*!
97 * \since v.1.5.2
98 */
100
101//! Starting point for errors of mboxes::composite submodule.
102/*!
103 * \since v.1.5.2
104 */
105const int mboxes_composite_errors = 21400;
106
107//! Starting point for errors of mboxes::inflight_limit submodule.
108/*!
109 * \since v.1.5.2
110 */
112
113//! Starting point for errors of msg_hierarchy submodule.
114/*!
115 * \since v.1.6.2
116 */
117const int msg_hierarchy_errors = 21600;
118
119} /* namespace errors */
120
121} /* namespace extra */
122
123} /* namespace so_5 */
const int mboxes_round_robin_errors
Starting point for errors of mboxes::round_robin submodule.
const int asio_one_thread_errors
Starting point for errors of asio_one_thread submodule.
const int mboxes_unique_subscribers_errors
Starting point for errors of mboxes::unique_subscribers submodule.
const int revocable_timer_errors
Starting point for errors of revocable_timer submodule.
const int revocable_msg_errors
Starting point for errors of revocable_msg submodule.
const int retained_msg_mbox_errors
Starting point for errors of retained_msg_mbox submodule.
const int collecting_mbox_errors
Starting point for errors of collecting_mbox submodule.
const int mboxes_proxy_errors
Starting point for errors of mboxes::proxy submodule.
const int mboxes_composite_errors
Starting point for errors of mboxes::composite submodule.
const int async_op_errors
Starting point for errors of async_op submodule.
const int mboxes_inflight_limit_errors
Starting point for errors of mboxes::inflight_limit submodule.
const int enveloped_msg_errors
Starting point for errors of enveloped_msg submodule.
const int msg_hierarchy_errors
Starting point for errors of msg_hierarchy submodule.
const int shutdowner_errors
Starting point for errors of shutdowner submodule.
const int asio_thread_pool_errors
Starting point for errors of asio_thread_pool submodule.
const int mboxes_first_last_subscriber_notification_errors
Starting point for errors of mboxes::first_last_subscriber_notification submodule.
const int sync_errors
Starting point for errors of sync submodule.
Ranges for error codes of each submodules.
Definition details.hpp:13