iceoryx2
C++ Language Bindings
Loading...
Searching...
No Matches
client_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_CLIENT_DETAILS_HPP
14#define IOX2_CLIENT_DETAILS_HPP
15
20
21namespace iox2 {
24 public:
27 ~ClientDetailsView() noexcept = default;
28
29 auto operator=(const ClientDetailsView&) -> ClientDetailsView& = delete;
30 auto operator=(ClientDetailsView&& rhs) noexcept -> ClientDetailsView&;
31
33 auto client_id() const -> UniqueClientId;
34
36 auto node_id() const -> UniqueNodeId;
37
39 auto response_buffer_size() const -> uint64_t;
40
42 auto number_of_requests() const -> uint64_t;
43
45 auto max_slice_len() const -> uint64_t;
46
48 auto max_active_requests() const -> uint64_t;
49
50 private:
51 template <typename T, typename>
52 friend auto internal::list_ports_callback(void* context, T port_details_view) -> iox2_callback_progression_e;
53
54 explicit ClientDetailsView(iox2_client_details_ptr handle);
55 iox2_client_details_ptr m_handle = nullptr;
56};
57} // namespace iox2
58
59#endif
Contains the communication settings of the connected [Client].
auto max_active_requests() const -> uint64_t
The maximal amount of active requests the [Client] can send.
~ClientDetailsView() noexcept=default
auto client_id() const -> UniqueClientId
The [UniqueClientId] of the [Client].
auto response_buffer_size() const -> uint64_t
The receive buffer size for incoming responses.
ClientDetailsView(ClientDetailsView &&rhs) noexcept
friend auto internal::list_ports_callback(void *context, T port_details_view) -> iox2_callback_progression_e
auto number_of_requests() const -> uint64_t
The total number of requests available in the [Client]s data segment.
auto node_id() const -> UniqueNodeId
The [NodeId] of the [Node] under which the [Client] was created.
auto max_slice_len() const -> uint64_t
The current maximum length of a slice.
ClientDetailsView(const ClientDetailsView &)=delete
The system-wide unique id of a [Client].
The system-wide unique id of a [Node].