iceoryx2
C++ Language Bindings
Loading...
Searching...
No Matches
port_error.hpp
Go to the documentation of this file.
1// Copyright (c) 2024 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_PORT_ERROR_HPP
14#define IOX2_PORT_ERROR_HPP
15
16#include <cstdint>
17
18namespace iox2 {
37
63
78
108} // namespace iox2
109
110#endif
SendError
Failure that can be emitted when data is sent.
@ ConnectionError
A failure occurred while establishing a connection to the ports counterpart port.
@ LoanErrorOutOfMemory
The data segment does not have any more memory left.
@ ConnectionBrokenSinceSenderNoLongerExists
Send was called but the corresponding port went already out of scope.
@ LoanErrorInternalFailure
Errors that indicate either an implementation issue or a wrongly configured system.
@ UnableToDeliver
The sample could not be delivered.
@ OutOfMemory
The data segment does not have any more memory left.
@ FailedToEstablishConnection
Failures when creating the connection.
@ UnableToMapSendersDataSegment
Failures when mapping the corresponding data segment.
@ InternalError
Errors that indicate either an implementation issue or a wrongly configured system.
@ ConnectionCorrupted
Connection is corrupted.
RequestSendError
Failure that can be emitted when a [RequestMut] is sent.