Files
roto/roto-tonic/proto/interop.proto
T

27 lines
472 B
Protocol Buffer
Raw Normal View History

2026-05-17 00:43:21 -07:00
syntax = "proto3";
package interop;
service InteropService {
// Expected to succeed
rpc UnaryCall (UnaryRequest) returns (UnaryResponse);
// Expected to fail (roto does not support streaming)
rpc StreamingCall (StreamingRequest) returns (stream StreamingResponse);
}
message UnaryRequest {
string message = 1;
}
message UnaryResponse {
string reply = 1;
}
message StreamingRequest {
string query = 1;
}
message StreamingResponse {
string item = 1;
}