mirror of https://github.com/grpc/grpc.git
parent
8ba4105972
commit
d946418cb7
1 changed files with 14 additions and 0 deletions
@ -0,0 +1,14 @@ |
||||
syntax = "proto3"; |
||||
|
||||
message BenchmarkRequest { |
||||
int32 message_size = 1; |
||||
int32 response_count = 2; |
||||
} |
||||
|
||||
message BenchmarkResponse { |
||||
bytes response = 1; |
||||
} |
||||
|
||||
service UnaryStreamBenchmarkService { |
||||
rpc Benchmark(BenchmarkRequest) returns (stream BenchmarkResponse); |
||||
} |
Loading…
Reference in new issue