Re: [grpc-io] Can we use a message with a repeated filed inside in a Bidirectional streamed RPC service call?

2020-06-11 Thread Danesh Kuruppu
Hi Rohit, Hello I am struggling with a question -Can we use a message with a repeated > filed inside in a Bidirectional streamed RPC service call? > > My Client server architecture is bidirectionally streamed. > > If so , is there any link for examples? > If I understand correctly, you need to pa

Re: [grpc-io] Re: Has anyone tried to build the gRPC on QNX platform

2020-06-11 Thread Phani B
I am facing not exactly same but a related problem as well. For me even when I give -std=c++11flag, i get errors related to header file inclusion. On Fri, 12 Jun 2020, 10:50 , wrote: > I am using -std=c++11 as CXXFLAGS. But still it is showing this error. > > On Friday, June 12, 2020 at 9:27:51

Re: [grpc-io] Re: Has anyone tried to build the gRPC on QNX platform

2020-06-11 Thread belanke . darshan
I am using -std=c++11 as CXXFLAGS. But still it is showing this error. On Friday, June 12, 2020 at 9:27:51 AM UTC+5:30, Thomas Mercier wrote: > > > https://gcc.gnu.org/onlinedocs/gcc-5.4.0/gcc/Standards.html#C_002b_002b-Language > > > "The default, if no C++ language dialect options are given, i

Re: [grpc-io] Re: Has anyone tried to build the gRPC on QNX platform

2020-06-11 Thread Phani B
But I think it should be picking -std=c++11 as a CFLAG automatically right? On Fri, 12 Jun 2020, 09:27 Thomas Mercier, wrote: > > https://gcc.gnu.org/onlinedocs/gcc-5.4.0/gcc/Standards.html#C_002b_002b-Language > > > "The default, if no C++ language dialect options are given, is > -std=gnu++98."

Re: [grpc-io] Re: Has anyone tried to build the gRPC on QNX platform

2020-06-11 Thread Thomas Mercier
https://gcc.gnu.org/onlinedocs/gcc-5.4.0/gcc/Standards.html#C_002b_002b-Language "The default, if no C++ language dialect options are given, is -std=gnu++98. " On Thu, Jun 11, 2020 at 8:49 PM wrote: > Here I am using gcc-5.4.0, which is c++11 standard. But still it is > showing this error mess

[grpc-io] Re: Has anyone tried to build the gRPC on QNX platform

2020-06-11 Thread belanke . darshan
Here I am using gcc-5.4.0, which is c++11 standard. But still it is showing this error message. Can anyone help me on this? -- 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 em

[grpc-io] Can we use a message with a repeated filed inside in a Bidirectional streamed RPC service call?

2020-06-11 Thread rohit nv
Hello I am struggling with a question -Can we use a message with a repeated filed inside in a Bidirectional streamed RPC service call? My Client server architecture is bidirectionally streamed. If so , is there any link for examples? -- You received this message because you are subscribed to t

[grpc-io] Re: How to Pass a a list of data like array or vector (using repeated in protobuf file) from server to client using stream data.

2020-06-11 Thread rohit nv
Thanks for the reply.. I have one more doubt. Can we use a repeated (vector or map ) to send data for a streamed communication. e.g syntax = "proto3"; import "google/protobuf/empty.proto"; message Dummy { string foo = 1; repeated int bar = 2; } message DummyList { Dummy dummy = 1; }

[grpc-io] Has anyone tried to build the gRPC on QNX platform

2020-06-11 Thread belanke . darshan
I am trying to cross compile the gRPC repo with QNX platform. I followed the steps mentioned in guthub page. But I am facing an issue with C++ version compatibility. Getting error message of #error "C++ versions less than C++11 are not supported." Has anyone tried to build this for QNX arm plat