diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-06-07 16:24:17 +0300 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-06-07 16:24:17 +0300 |
| commit | 85e2267e399805c9bde146833d338cd9856bbfa0 (patch) | |
| tree | 7b3ecee365f591c658f47145751a28f3f50f0baa /Software/PMR | |
| parent | f416553e4658dc719b89ffda6f0b364cfab3c1b8 (diff) | |
| download | Tango-85e2267e399805c9bde146833d338cd9856bbfa0.tar.gz Tango-85e2267e399805c9bde146833d338cd9856bbfa0.zip | |
Added TryThreadLoadingRequest/Response.
Diffstat (limited to 'Software/PMR')
3 files changed, 20 insertions, 0 deletions
diff --git a/Software/PMR/Messages/Common/MessageType.proto b/Software/PMR/Messages/Common/MessageType.proto index 4ce14ff6b..6cfa15462 100644 --- a/Software/PMR/Messages/Common/MessageType.proto +++ b/Software/PMR/Messages/Common/MessageType.proto @@ -298,4 +298,6 @@ enum MessageType ContinueThreadLoadingResponse = 11003; StopThreadLoadingRequest = 11004; StopThreadLoadingResponse = 11005; + TryThreadLoadingRequest = 11006; + TryThreadLoadingResponse = 11007; } diff --git a/Software/PMR/Messages/ThreadLoading/TryThreadLoadingRequest.proto b/Software/PMR/Messages/ThreadLoading/TryThreadLoadingRequest.proto new file mode 100644 index 000000000..4235cb2d0 --- /dev/null +++ b/Software/PMR/Messages/ThreadLoading/TryThreadLoadingRequest.proto @@ -0,0 +1,9 @@ +syntax = "proto3"; + +package Tango.PMR.ThreadLoading; +option java_package = "com.twine.tango.pmr.threadloading"; + +message TryThreadLoadingRequest +{ + +}
\ No newline at end of file diff --git a/Software/PMR/Messages/ThreadLoading/TryThreadLoadingResponse.proto b/Software/PMR/Messages/ThreadLoading/TryThreadLoadingResponse.proto new file mode 100644 index 000000000..a92ee70c4 --- /dev/null +++ b/Software/PMR/Messages/ThreadLoading/TryThreadLoadingResponse.proto @@ -0,0 +1,9 @@ +syntax = "proto3"; + +package Tango.PMR.ThreadLoading; +option java_package = "com.twine.tango.pmr.threadloading"; + +message TryThreadLoadingResponse +{ + +}
\ No newline at end of file |
