Skip to content
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

Protocol changes: EntityId (into protocol_changes) #774

Merged
merged 24 commits into from
Mar 12, 2024
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
2c18758
New Subscribers EntityId behavior for clients and peers
OlivierHecart Feb 2, 2024
ef1034e
Improve routing logging
OlivierHecart Feb 5, 2024
61c7dc3
New Queryables EntityId behavior for clients and peers
OlivierHecart Feb 5, 2024
1173547
Improve routing logging
OlivierHecart Feb 5, 2024
f43e9c1
Use proper QueryableId in Session and AdminSpace
OlivierHecart Feb 7, 2024
373d9a4
Sessions use runtime Id generator to avoid collisions
OlivierHecart Feb 7, 2024
ddcb6d5
AdminSpace use runtime Id generator to avoid collisions
OlivierHecart Feb 7, 2024
585db56
Use proper ResponderId
OlivierHecart Feb 7, 2024
d521496
Define EntityId type
OlivierHecart Feb 7, 2024
053565b
Add source_eid to SourceInfo
OlivierHecart Feb 7, 2024
540e1d1
Update source_info_stack_size test
OlivierHecart Feb 8, 2024
18af62b
Update source_info_stack_size test
OlivierHecart Feb 9, 2024
8398535
Introduce EntityGlobalId type
OlivierHecart Feb 9, 2024
8b3c094
Add id() function to Subscriber, Queryable and Publisher
OlivierHecart Feb 12, 2024
ccd6b9c
Add Publication::with_source_info() function
OlivierHecart Feb 12, 2024
7811590
Code format
OlivierHecart Feb 15, 2024
4d4bdb2
Remove ref to PR #703
OlivierHecart Feb 15, 2024
9ae62c9
Merge branch 'protocol_changes' into entityid
OlivierHecart Feb 28, 2024
1a60970
Fix doctests
OlivierHecart Feb 29, 2024
2558a67
Merge branch 'protocol_changes' into entityid
OlivierHecart Mar 11, 2024
493502c
Add comments
OlivierHecart Mar 12, 2024
0901a44
Remove comments
OlivierHecart Mar 12, 2024
4b7b131
Merge branch 'protocol_changes' into entityid
OlivierHecart Mar 12, 2024
4cfd6c9
Merge branch 'protocol_changes' into entityid
OlivierHecart Mar 12, 2024
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
Prev Previous commit
Next Next commit
Update source_info_stack_size test
  • Loading branch information
OlivierHecart committed Feb 8, 2024
commit 540e1d1dae36b71c1b1803b60ec972b8c8448a2c
2 changes: 1 addition & 1 deletion zenoh/src/sample.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ pub struct SourceInfo {
#[test]
#[cfg(feature = "unstable")]
fn source_info_stack_size() {
assert_eq!(std::mem::size_of::<SourceInfo>(), 16 * 2);
assert_eq!(std::mem::size_of::<SourceInfo>(), 16 * 3);
}

#[zenoh_macros::unstable]
Expand Down
Loading