-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathTest0APIGrpcPb.proto
51 lines (28 loc) · 1.11 KB
/
Test0APIGrpcPb.proto
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
syntax = "proto3";
package Test0API;
// TODO implement error management/reporting (is there a "throws" in gRPC?)
// TODO also generate client and server test programs working with the data and generated code
// services (from endpoints)
// This endpoint service has the following MAP roles: undisclosed
service endpoint0 {
// responsibility unknown
rpc sayhello(sayhelloRequest) returns (sayhelloResponse) {}
// responsibility RETRIEVAL_OPERATION
rpc sayhelloAgain(sayhelloAgainRequest) returns (sayhelloAgainResponse) {}
}
// TODO make test case 4 work (again), produces incorrect/incomplete results after refactoring (last response "44")
// TODO need to avoid "repeated repeated:" either remove one or outsource one to new message definition (done elsewhere)
// messages
// TODO generated names will not be unique if two endpoints use the same operation names (?)
message sayhelloRequest {
string aString = 1;
}
message sayhelloResponse {
string identifier1 = 2;
}
message sayhelloAgainRequest {
int32 anInt = 3;
}
message sayhelloAgainResponse {
repeated string stringList = 5;
}