Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions grpc/testing/test.proto
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,12 @@ service TestService {
// The test server will not implement this method. It will be used
// to test the behavior when clients call unimplemented methods.
rpc UnimplementedCall(grpc.testing.Empty) returns (grpc.testing.Empty);

// A persistent bidirectional streaming RPC where messages are in sequence in the same bidi stream.
// The client sends one request followed by one response.
// This sequential message exchange over a bidi stream is used to benchmark
// latency in Streamed Batching.
rpc StreamedSequentialUnaryCall(stream SimpleRequest) returns (stream SimpleResponse);
}

// A simple service NOT implemented at servers so clients can test for
Expand Down