Skip to content

[#690] slice api #710

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 24 commits into from
Apr 30, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
9bb47e1
[#690] Add slice interface to active request
elfenpiff Apr 28, 2025
6922f5d
[#690] Add slice interface to pending response
elfenpiff Apr 28, 2025
7a22ac0
[#690] Add slice interface to server and client
elfenpiff Apr 28, 2025
f72ff17
[#690] Add advanced port builder arguments for slices in server and c…
elfenpiff Apr 28, 2025
a1fedfc
[#690] Add slice API to request response builder
elfenpiff Apr 28, 2025
452692b
[#690] Implement builder
elfenpiff Apr 28, 2025
26496bc
[#690] Test slice builder
elfenpiff Apr 28, 2025
b87f5cf
[#690] Implement slice API in client
elfenpiff Apr 28, 2025
76b1208
[#690] Implement slice API in RequestMutUninit and Server for Requests
elfenpiff Apr 28, 2025
bab8dd1
[#690] Implement slice API in active request
elfenpiff Apr 28, 2025
4da4afb
[#690] Add custom payload receive to server
elfenpiff Apr 28, 2025
5ab5fea
[#690] Add slice receive to pending response
elfenpiff Apr 28, 2025
a3d13d7
[#690] Implement builder custom type API
elfenpiff Apr 28, 2025
2286c34
[#690] Custom payload tests implemented
elfenpiff Apr 29, 2025
2b1f644
[#690] Test custom header
elfenpiff Apr 29, 2025
99bdeb7
[#690] Add dynamic API tests
elfenpiff Apr 29, 2025
42a2281
[#690] Fix issue in static slice server API
elfenpiff Apr 29, 2025
d112fbb
[#690] Fix dynamic response client connection
elfenpiff Apr 29, 2025
86892c7
[#690] Add missing test
elfenpiff Apr 29, 2025
34cca2b
[#690] Move Custom**Marker into main builder namespace
elfenpiff Apr 29, 2025
e05d7ac
[#690] Add documentation for request mut uninit
elfenpiff Apr 29, 2025
1145cba
[#690] Add documentation for response mut uninit
elfenpiff Apr 29, 2025
62bf2f6
[#690] Add documentation for server, pending response and active request
elfenpiff Apr 29, 2025
6ccca4e
[#690] Add missing documentation and fix clippy warnings
elfenpiff Apr 29, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion iceoryx2-ffi/ffi/src/api/service_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ use crate::api::{iox2_service_type_e, AssertNonNullHandle, HandleToType};
use crate::{iox2_service_builder_pub_sub_set_user_header_type_details, iox2_type_variant_e};

use iceoryx2::prelude::*;
use iceoryx2::service::builder::publish_subscribe::{CustomHeaderMarker, CustomPayloadMarker};
use iceoryx2::service::builder::{
event::Builder as ServiceBuilderEvent, publish_subscribe::Builder as ServiceBuilderPubSub,
Builder as ServiceBuilderBase,
};
use iceoryx2::service::builder::{CustomHeaderMarker, CustomPayloadMarker};
use iceoryx2_bb_elementary::static_assert::*;
use iceoryx2_ffi_macros::iceoryx2_ffi;

Expand Down
Loading