1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-05-19 21:23:04 +02:00
Johnson C d2a51d05c4
[feature] stream CloseSend (#2323)
* support stream CloseSend

* move CloseSend into Closer
2021-10-26 15:07:08 +01:00

17 lines
272 B
Protocol Buffer

syntax = "proto3";
option go_package = "./proto;stream";
service Streamer {
rpc Stream(stream Request) returns (stream Response) {}
rpc ServerStream(Request) returns (stream Response) {}
}
message Request {
int64 count = 1;
}
message Response {
int64 count = 1;
}