Re: [grpc-io] Re: using grpc for push notification

2018-03-16 Thread mscudieri78 via grpc.io
Could you please repost the examples of th c++ async route guide demos, Would be very helpful. Thanks, Marco. Am Mittwoch, 16. August 2017 17:33:38 UTC+2 schrieb Chaitanya Gangwar: > > proto file is in same folder under proto directory. > > On Wed, Aug 16, 2017 at 8:51 PM,

Re: [grpc-io] Re: using grpc for push notification

2017-11-29 Thread ravijo
Hi Chaitanya, Could you please share async stream code? The link seem to be broken now. thanks. On Thursday, June 15, 2017 at 8:54:52 AM UTC-7, Chaitanya Gangwar wrote: > > Hi John, > > I have added 2 variant of routeguide example, one for asyn stream with one > rpc and other for async stream

Re: [grpc-io] Re: using grpc for push notification

2017-08-16 Thread piratf . me
Get it! Thank you for your help. You are wonderful. > Oh i think i missed the grpc proto file. But its the same as present in > git repository example folder. This code is modification of example present > in grpc source. You just need to make a small change, add "stream" keyword > in return

Re: [grpc-io] Re: using grpc for push notification

2017-08-16 Thread chaitanya gangwar
Oh i think i missed the grpc proto file. But its the same as present in git repository example folder. This code is modification of example present in grpc source. You just need to make a small change, add "stream" keyword in return argument.

Re: [grpc-io] Re: using grpc for push notification

2017-08-16 Thread piratf . me

Re: [grpc-io] Re: using grpc for push notification

2017-08-16 Thread chaitanya gangwar
proto file is in same folder under proto directory. On Wed, Aug 16, 2017 at 8:51 PM, wrote: > Hi Chaitanya, > > Thank you for you sharing! Can you provide the .proto file with it? It's > hard to understand without the .proto file, and I can't change the code and > recompile

Re: [grpc-io] Re: using grpc for push notification

2017-08-16 Thread piratf . me
Hi Chaitanya, Thank you for you sharing! Can you provide the .proto file with it? It's hard to understand without the .proto file, and I can't change the code and recompile it. Thanks Sean Hi John, > > I have added 2 variant of routeguide example, one for asyn stream with one > rpc and

Re: [grpc-io] Re: using grpc for push notification

2017-08-16 Thread piratf . me
Hi Chaitanya, Thank you for you share! Can you provide the .proto file with it? It's hard to understand without the .proto file, and I can't change the code and recompile it. Thanks Sean 在 2017年6月15日星期四 UTC+8下午11:54:52,Chaitanya Gangwar写道: > > Hi John, > > I have added 2 variant of

Re: [grpc-io] Re: using grpc for push notification

2017-06-15 Thread chaitanya gangwar
Hi John, I have added 2 variant of routeguide example, one for asyn stream with one rpc and other for async stream multiple rpc. You can take a look at the code. this was working with grpc 0_11 version. This will give you a good idea of how to use grpc for asyn stream.

Re: [grpc-io] Re: using grpc for push notification

2017-06-15 Thread John Coffey
Chaitanya, that would be really useful, thanks, I will look forward to seeing the code. It is strange that gRPC does not have asynchronous stream support, you would think this kind of listener/observe pattern would be a pretty popular feature. John On Thursday, June 15, 2017 at 12:55:10

Re: [grpc-io] Re: using grpc for push notification

2017-06-14 Thread chaitanya gangwar
Hi John, When i was working on this, there was no example in grpc package to do the same. Actually, what you need here is asynchronous streaming, but in examples, there are 2 variant, one is synchronous stream (routeguide) and normal async rpc (helloworld). You have to understand both the

Re: [grpc-io] Re: using grpc for push notification

2017-06-14 Thread John Coffey
Josh/Chaitanya, I have a similar application - are there any C++ examples that do this kind of thing? I just posted a new question to the newsgroup asking and then I found this thread. John On Friday, January 22, 2016 at 4:53:42 PM UTC-5, Josh Humphries wrote: > > There is an example of