Re: [grpc-io] Using a single CompletionQueue for server and client objects

2016-10-18 Thread Adam Paszke
That’s great! Thanks for a super quick response! Best, Adam > Wiadomość napisana przez Michael Lumish w dniu > 18.10.2016, o godz. 22:03: > > Yes, you can do that. In fact, the Node.js library automatically uses a > single completion queue for all operations and it is able to handle any > nu

Re: [grpc-io] Using a single CompletionQueue for server and client objects

2016-10-18 Thread 'Michael Lumish' via grpc.io
Yes, you can do that. In fact, the Node.js library automatically uses a single completion queue for all operations and it is able to handle any number of simultaneous clients and servers (in principle). On Tue, Oct 18, 2016 at 12:59 PM wrote: > Hi, > > I'm implementing a distributed system and i

[grpc-io] Using a single CompletionQueue for server and client objects

2016-10-18 Thread adam . paszke
Hi, I'm implementing a distributed system and it seems that gRPC would be a great fit for my project. However I have quite simple problem: can a single CompletionQueue be used both for listening for incoming RPC calls to a local server, and for responses to RPC calls initiated from the process?