Re: [grpc-io] Concurrency in synchronous c++ service

2016-10-28 Thread Jan Willem
Cool, thanks for the confirmation! 2016-10-27 17:01 GMT+02:00 Craig Tiller : > Server methods can absolutely be called from many threads. > > On Thu, Oct 27, 2016 at 7:28 AM wrote: > >> Hi, >> >> In the synchronous case (example:

Re: [grpc-io] Concurrency in synchronous c++ service

2016-10-27 Thread 'Craig Tiller' via grpc.io
Server methods can absolutely be called from many threads. On Thu, Oct 27, 2016 at 7:28 AM wrote: > Hi, > > In the synchronous case (example: > http://www.grpc.io/docs/tutorials/basic/c.html), are the functions > executed concurrently, or sequentially? > For instance in

[grpc-io] Concurrency in synchronous c++ service

2016-10-27 Thread jan . willem . ps
Hi, In the synchronous case (example: http://www.grpc.io/docs/tutorials/basic/c.html), are the functions executed concurrently, or sequentially? For instance in the example, is RouteGuideImpl::GetFeature called concurrently (from multiple threads from the same time). I've implemented such a