File: test.proto

package info (click to toggle)
golang-github-grpc-ecosystem-grpc-opentracing 0.0~git20180507.8e809c8-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bookworm-proposed-updates, bullseye
  • size: 576 kB
  • sloc: python: 2,021; java: 1,077; 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);
}