Hello
I'm building my service on the base of this 
example: 
https://github.com/grpc/grpc/blob/master/examples/cpp/helloworld/greeter_async_server.cc
If I want to add more threads that process server communication can it be 
done by:
// run rpc handlers pool
for (int i = 0; i < threadsNo; i++) {
thread t(HandleRpcs, service, cq);
t.detach();
}
?

One CompletionQueue shared by multiple read/write threads
--
regards
Przemysław Sobala

-- 
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/e89c18bd-2da6-4420-a2e1-6d03726614c0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to