aboutsummaryrefslogtreecommitdiffstats
path: root/Software/PMR/Messages/ThreadLoading
diff options
context:
space:
mode:
authorShlomo Hecht <shlomo@twine-s.com>2020-01-27 09:19:11 +0200
committerShlomo Hecht <shlomo@twine-s.com>2020-01-27 09:19:11 +0200
commitddda6089bff56e80703c8d2dce297919edc58bf1 (patch)
tree7702c5cf169124d522eacc7f1a9e0878373baedd /Software/PMR/Messages/ThreadLoading
parent1d4d327571d4c0c9f4e17411551bd4dae1e2aed0 (diff)
parentbf2f3245339b9fd9148a2ad25b5ba3320e970cc1 (diff)
downloadTango-ddda6089bff56e80703c8d2dce297919edc58bf1.tar.gz
Tango-ddda6089bff56e80703c8d2dce297919edc58bf1.zip
Merge branch 'master' of https://twinetfs.visualstudio.com/Tango/_git/Tango
Diffstat (limited to 'Software/PMR/Messages/ThreadLoading')
-rw-r--r--Software/PMR/Messages/ThreadLoading/ContinueThreadLoadingRequest.proto11
-rw-r--r--Software/PMR/Messages/ThreadLoading/ContinueThreadLoadingResponse.proto9
-rw-r--r--Software/PMR/Messages/ThreadLoading/StartThreadLoadingRequest.proto9
-rw-r--r--Software/PMR/Messages/ThreadLoading/StartThreadLoadingResponse.proto12
-rw-r--r--Software/PMR/Messages/ThreadLoading/StopThreadLoadingRequest.proto9
-rw-r--r--Software/PMR/Messages/ThreadLoading/StopThreadLoadingResponse.proto9
-rw-r--r--Software/PMR/Messages/ThreadLoading/ThreadLoadingState.proto15
7 files changed, 74 insertions, 0 deletions
diff --git a/Software/PMR/Messages/ThreadLoading/ContinueThreadLoadingRequest.proto b/Software/PMR/Messages/ThreadLoading/ContinueThreadLoadingRequest.proto
new file mode 100644
index 000000000..5bae29bd7
--- /dev/null
+++ b/Software/PMR/Messages/ThreadLoading/ContinueThreadLoadingRequest.proto
@@ -0,0 +1,11 @@
+syntax = "proto3";
+
+import "ProcessParameters.proto";
+
+package Tango.PMR.ThreadLoading;
+option java_package = "com.twine.tango.pmr.threadloading";
+
+message ContinueThreadLoadingRequest
+{
+ PMR.Printing.ProcessParameters ProcessParameters = 1;
+} \ No newline at end of file
diff --git a/Software/PMR/Messages/ThreadLoading/ContinueThreadLoadingResponse.proto b/Software/PMR/Messages/ThreadLoading/ContinueThreadLoadingResponse.proto
new file mode 100644
index 000000000..b937fbb34
--- /dev/null
+++ b/Software/PMR/Messages/ThreadLoading/ContinueThreadLoadingResponse.proto
@@ -0,0 +1,9 @@
+syntax = "proto3";
+
+package Tango.PMR.ThreadLoading;
+option java_package = "com.twine.tango.pmr.threadloading";
+
+message ContinueThreadLoadingResponse
+{
+
+} \ No newline at end of file
diff --git a/Software/PMR/Messages/ThreadLoading/StartThreadLoadingRequest.proto b/Software/PMR/Messages/ThreadLoading/StartThreadLoadingRequest.proto
new file mode 100644
index 000000000..c0c3d3257
--- /dev/null
+++ b/Software/PMR/Messages/ThreadLoading/StartThreadLoadingRequest.proto
@@ -0,0 +1,9 @@
+syntax = "proto3";
+
+package Tango.PMR.ThreadLoading;
+option java_package = "com.twine.tango.pmr.threadloading";
+
+message StartThreadLoadingRequest
+{
+
+} \ No newline at end of file
diff --git a/Software/PMR/Messages/ThreadLoading/StartThreadLoadingResponse.proto b/Software/PMR/Messages/ThreadLoading/StartThreadLoadingResponse.proto
new file mode 100644
index 000000000..be8136741
--- /dev/null
+++ b/Software/PMR/Messages/ThreadLoading/StartThreadLoadingResponse.proto
@@ -0,0 +1,12 @@
+syntax = "proto3";
+
+import "ThreadLoadingState.proto";
+
+package Tango.PMR.ThreadLoading;
+option java_package = "com.twine.tango.pmr.threadloading";
+
+message StartThreadLoadingResponse
+{
+ ThreadLoadingState State = 1;
+ string ErrorReason = 2;
+} \ No newline at end of file
diff --git a/Software/PMR/Messages/ThreadLoading/StopThreadLoadingRequest.proto b/Software/PMR/Messages/ThreadLoading/StopThreadLoadingRequest.proto
new file mode 100644
index 000000000..03f5df91f
--- /dev/null
+++ b/Software/PMR/Messages/ThreadLoading/StopThreadLoadingRequest.proto
@@ -0,0 +1,9 @@
+syntax = "proto3";
+
+package Tango.PMR.ThreadLoading;
+option java_package = "com.twine.tango.pmr.threadloading";
+
+message StopThreadLoadingRequest
+{
+
+} \ No newline at end of file
diff --git a/Software/PMR/Messages/ThreadLoading/StopThreadLoadingResponse.proto b/Software/PMR/Messages/ThreadLoading/StopThreadLoadingResponse.proto
new file mode 100644
index 000000000..4725d3647
--- /dev/null
+++ b/Software/PMR/Messages/ThreadLoading/StopThreadLoadingResponse.proto
@@ -0,0 +1,9 @@
+syntax = "proto3";
+
+package Tango.PMR.ThreadLoading;
+option java_package = "com.twine.tango.pmr.threadloading";
+
+message StopThreadLoadingResponse
+{
+
+} \ No newline at end of file
diff --git a/Software/PMR/Messages/ThreadLoading/ThreadLoadingState.proto b/Software/PMR/Messages/ThreadLoading/ThreadLoadingState.proto
new file mode 100644
index 000000000..7f0eb5f98
--- /dev/null
+++ b/Software/PMR/Messages/ThreadLoading/ThreadLoadingState.proto
@@ -0,0 +1,15 @@
+syntax = "proto3";
+
+package Tango.PMR.ThreadLoading;
+option java_package = "com.twine.tango.pmr.threadloading";
+
+enum ThreadLoadingState
+{
+ None = 0;
+ Preparing = 1;
+ ReadyForLoading = 2;
+ PreparationError = 3;
+ Finalizing = 4;
+ FinalizationError = 5;
+ Completed = 6;
+} \ No newline at end of file