Hi,
I've implemented below service definition in my grpc server/client
application.
service TestService {
rpc testRPCCall(stream Test) returns (stream Test) {}
}
I found below stubs can be implemented on proto file compilation.
TestServiceGrpc.TestServiceStub
TestServiceGrpc.TestServiceBlockingStub
TestServiceGrpc.TestServiceFutureStub
TestServiceGrpc.TestServiceImplBase
I want to adapt asynchronous behavior of rpc calls. But, I'm not sure which
one of above should be implemented. Is it mandatory to stream a rpc
call(stream Test) as mentioned in above service definition for asynchronous
implementation?
Thanks in advance.
--
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 post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/grpc-io.
To view this discussion on the web visit
https://groups.google.com/d/msgid/grpc-io/c94c3482-c9a7-4f49-aa09-2be32b22f1d6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.