File: test.proto

package info (click to toggle)
golang-github-opentracing-contrib-go-grpc 0.0~git20210225.73cb765-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 148 kB
  • sloc: makefile: 2
file content (21 lines) | stat: -rw-r--r-- 461 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
syntax = "proto3";

package otgrpc.testing;

message SimpleRequest {
  int32 payload = 1;
}

message SimpleResponse {
  int32 payload = 1;
}

service TestService {
  rpc UnaryCall(SimpleRequest) returns (SimpleResponse);

  rpc StreamingOutputCall(SimpleRequest) returns (stream SimpleResponse);

  rpc StreamingInputCall(stream SimpleRequest) returns (SimpleResponse);

  rpc StreamingBidirectionalCall(stream SimpleRequest) returns (stream SimpleResponse);
}