Skip to content
Snippets Groups Projects
Commit b38e2176 authored by Johannes Mey's avatar Johannes Mey
Browse files

add subscription request

parent 452e7d8d
Branches
No related tags found
No related merge requests found
......@@ -56,3 +56,29 @@ message IposSimpleOrientation {
float z = 3; // there is no orientation
float w = 4; // available
}
message IposSubscriptionRequest {
string subscription_id = 1;
Selection type_selection = 2;
repeated string types = 3;
Selection object_selection = 4;
repeated string objects = 5;
Selection zone_selection = 6;
repeated string zones = 7;
double minimum_position_delta = 8;
double max_update_frequency = 9;
}
enum Selection {
SELECTION_UNSPECIFIED = 0;
SELECTION_ALL = 1;
SELECTION_NONE = 2;
SELECTION_ONLY_LIST = 3;
SELECTION_EXCEPT_LIST = 4;
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment