I want to perform only the operation of client sending request unilaterally
to server through rpc below GenGrpcStream.
service GrpcIpc {
rpc GenGrpc (GenGrpcMsg) returns (google.protobuf.Empty) {} // rpc
to send general IPC
rpc GenGrpcStream (stream GenGrpcMsg) returns (google.protobuf.Empty) {}
// rpc to send general IPC
}
When I was conducting the test, there was a symptom that Client is down.
Are there any restrictions on the number of ClientWriter.Write?
In other words, can't ClientWriter.Write () be performed unlimited without
ClientWriter.WritesDone ()?
I want to keep calling ClientWriter.Write () without
ClientWriter.WritesDone or ClientWriter.Finish.
Is it possible ?
--
You received this message because you are subscribed to the Google Groups
"grpc.io" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/grpc-io/842083f3-f78e-4295-9859-a0dc793b006e%40googlegroups.com.