Re: [grpc-io] Shutdown of Individual Services

2017-12-07 Thread Rama Rao
Thanks, Yeah, my main question was around whether server,shutdown can be called before we cleanup the services. Your answer helps. On Thu, Dec 7, 2017 at 3:44 PM, Eric Anderson wrote: > On Thu, Nov 23, 2017 at 12:41 AM, Rama Rao > wrote: > >> Now if

Re: [grpc-io] Shutdown of Individual Services

2017-12-07 Thread 'Eric Anderson' via grpc.io
On Thu, Nov 23, 2017 at 12:41 AM, Rama Rao wrote: > Now if I want to graceful shutdown, do I have first call shutdown on each > of the services added to ServiceImpl and then follow-it with a call to > service.shutdown? > or service.shutdown will handle both the cases?

[grpc-io] Shutdown of Individual Services

2017-11-22 Thread Rama Rao
I am using grpc-java. Let us say I have created a Service (ServiceImpl), added few services and started the service. Now if I want to graceful shutdown, do I have first call shutdown on each of the services added to ServiceImpl and then follow-it with a call to service.shutdown? or