iceoryx2
C++ Language Bindings
Loading...
Searching...
No Matches
writer_details.hpp
Go to the documentation of this file.
1// Copyright (c) 2025 Contributors to the Eclipse Foundation
2//
3// See the NOTICE file(s) distributed with this work for additional
4// information regarding copyright ownership.
5//
6// This program and the accompanying materials are made available under the
7// terms of the Apache Software License 2.0 which is available at
8// https://www.apache.org/licenses/LICENSE-2.0, or the MIT license
9// which is available at https://opensource.org/licenses/MIT.
10//
11// SPDX-License-Identifier: Apache-2.0 OR MIT
12
13#ifndef IOX2_WRITER_DETAILS_HPP
14#define IOX2_WRITER_DETAILS_HPP
15
20
21namespace iox2 {
24 public:
27 ~WriterDetailsView() noexcept = default;
28
29 auto operator=(const WriterDetailsView&) -> WriterDetailsView& = delete;
30 auto operator=(WriterDetailsView&& rhs) noexcept -> WriterDetailsView&;
31
33 auto writer_id() const -> UniqueWriterId;
34
36 auto node_id() const -> UniqueNodeId;
37
38 private:
39 template <typename T, typename>
40 friend auto internal::list_ports_callback(void* context, T port_details_view) -> iox2_callback_progression_e;
41
42 explicit WriterDetailsView(iox2_writer_details_ptr handle);
43 iox2_writer_details_ptr m_handle = nullptr;
44};
45} // namespace iox2
46
47#endif
The system-wide unique id of a [Node].
The system-wide unique id of a [Writer].
Contains the communication settings of the connected [Writer].
auto writer_id() const -> UniqueWriterId
The [UniqueWriterId] of the [Writer].
~WriterDetailsView() noexcept=default
WriterDetailsView(const WriterDetailsView &)=delete
auto node_id() const -> UniqueNodeId
The [NodeId] of the [Node] under which the [Writer] was created.
friend auto internal::list_ports_callback(void *context, T port_details_view) -> iox2_callback_progression_e
WriterDetailsView(WriterDetailsView &&rhs) noexcept