Goby3  3.1.5a
2024.05.23
groups.h
Go to the documentation of this file.
1 // Copyright 2024:
2 // GobySoft, LLC (2013-)
3 // Community contributors (see AUTHORS file)
4 // File authors:
5 // Toby Schneider <toby@gobysoft.org>
6 //
7 //
8 // This file is part of the Goby Underwater Autonomy Project Libraries
9 // ("The Goby Libraries").
10 //
11 // The Goby Libraries are free software: you can redistribute them and/or modify
12 // them under the terms of the GNU Lesser General Public License as published by
13 // the Free Software Foundation, either version 2.1 of the License, or
14 // (at your option) any later version.
15 //
16 // The Goby Libraries are distributed in the hope that they will be useful,
17 // but WITHOUT ANY WARRANTY; without even the implied warranty of
18 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 // GNU Lesser General Public License for more details.
20 //
21 // You should have received a copy of the GNU Lesser General Public License
22 // along with Goby. If not, see <http://www.gnu.org/licenses/>.
23 
24 #ifndef GOBY_MIDDLEWARE_ACOMMS_GROUPS_H
25 #define GOBY_MIDDLEWARE_ACOMMS_GROUPS_H
26 
27 #include "goby/middleware/group.h"
28 
29 namespace goby
30 {
31 namespace middleware
32 {
33 namespace acomms
34 {
35 namespace groups
36 {
37 // used by apps in zeromq/acomms - ported from Goby2
38 // New applications will generally use those in middleware/transport/intervehicle/groups.h
39 
40 constexpr Group data_request{"goby::middleware::acomms::data_request"};
41 constexpr Group data_response{"goby::middleware::acomms::data_response"};
42 
43 constexpr Group status{"goby::middleware::acomms::status"};
44 
45 constexpr Group rx{"goby::middleware::acomms::rx"};
46 constexpr Group tx{"goby::middleware::acomms::tx"};
47 
48 constexpr Group queue_push{"goby::middleware::acomms::queue_push"};
49 constexpr Group queue_rx{"goby::middleware::acomms::queue_rx"};
50 constexpr Group queue_ack_orig{"goby::middleware::acomms::queue_ack_orig"};
51 
52 constexpr Group store_server_request{"goby::middleware::acomms::store_server_request"};
53 constexpr Group store_server_response{"goby::middleware::acomms::store_server_response"};
54 
55 } // namespace groups
56 } // namespace acomms
57 } // namespace middleware
58 } // namespace goby
59 
60 #endif
goby::middleware::acomms::groups::queue_ack_orig
constexpr Group queue_ack_orig
Definition: groups.h:50
goby
The global namespace for the Goby project.
Definition: acomms_constants.h:33
group.h
goby::middleware::acomms::groups::store_server_response
constexpr Group store_server_response
Definition: groups.h:53
goby::middleware::acomms::groups::store_server_request
constexpr Group store_server_request
Definition: groups.h:52
goby::middleware::acomms::groups::status
constexpr Group status
Definition: groups.h:43
goby::middleware::acomms::groups::queue_rx
constexpr Group queue_rx
Definition: groups.h:49
goby::middleware::acomms::groups::queue_push
constexpr Group queue_push
Definition: groups.h:48
goby::middleware::acomms::groups::tx
constexpr Group tx
Definition: groups.h:46
goby::middleware::Group
Class for grouping publications in the Goby middleware. Analogous to "topics" in ROS,...
Definition: group.h:59
goby::middleware::acomms::groups::data_request
constexpr Group data_request
Definition: groups.h:40
goby::middleware::acomms::groups::data_response
constexpr Group data_response
Definition: groups.h:41
goby::middleware::acomms::groups::rx
constexpr Group rx
Definition: groups.h:45