Goby3 3.3.0
2025.07.10
Loading...
Searching...
No Matches
terminate.proto
Go to the documentation of this file.
1syntax = "proto2";
2package goby.middleware.protobuf;
3
4message TerminateRequest
5{
6 optional string target_name = 1;
7 optional uint32 target_pid = 2;
8}
9
10message TerminateResponse
11{
12 optional string target_name = 1;
13 optional uint32 target_pid = 2;
14}
15
16
17message TerminateResult
18{
19 optional string target_name = 1;
20 optional uint32 target_pid = 2;
21
22 enum Result
23 {
24 PROCESS_RESPONDED = 1;
25 PROCESS_CLEANLY_QUIT = 2;
26 TIMEOUT_RESPONSE = 3;
27 TIMEOUT_RUNNING = 4;
28 }
29 required Result result = 3;
30
31}